Skip to content

Commit

Permalink
Format {verb} on display_scores
Browse files Browse the repository at this point in the history
  • Loading branch information
Vault108 authored Feb 15, 2023
1 parent c46f390 commit b4d04fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/duckhunt.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,9 @@ def display_scores(score_type: ScoreType, event, text, chan, conn, db):
chan_pfx = "Duck {noun} scores in {chan}: ".format(
noun=score_type.noun, chan=chan
)
no_ducks = "It appears no one has {verb} any ducks yet."
no_ducks = "It appears no one has {verb} any ducks yet.".format(
verb=score_type.verb
)

out = global_pfx if text else chan_pfx

Expand Down

0 comments on commit b4d04fb

Please sign in to comment.