Skip to content

Commit 95a438c

Browse files
authored
Merge pull request CloudBotIRC#67 from ericksjo/joshdash
Fixed grammar
2 parents 5dd1722 + a8ab8ca commit 95a438c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/duckhunt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,10 @@ def befriend(nick, chan, message, db, conn, notice):
296296
return "There is no hunt right now. Use .starthunt to start a game."
297297
elif game_status[network][chan]['duck_status'] != 1:
298298
if game_status[network][chan]['no_duck_kick'] == 1:
299-
out = "KICK {} {} :You tried befriending a non-existent duck, that's fucking creepy.".format(chan, nick)
299+
out = "KICK {} {} :You tried befriending a non-existent duck. That's fucking creepy.".format(chan, nick)
300300
conn.send(out)
301301
return
302-
return "You tried befriending a non-existent duck, that's fucking creepy."
302+
return "You tried befriending a non-existent duck. That's fucking creepy."
303303
else:
304304
game_status[network][chan]['shoot_time'] = time()
305305
deploy = game_status[network][chan]['duck_time']

0 commit comments

Comments
 (0)