Skip to content

Commit bf07869

Browse files
committed
update bang miss and befriend non-existant duck text.
1 parent 1b2ff61 commit bf07869

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
@@ -236,7 +236,7 @@ def bang(nick, chan, message, db, conn, notice):
236236
network = conn.name
237237
score = ""
238238
out = ""
239-
miss = ["WHOOSH! You missed the duck completely!", "Your gun jammed!", "Better luck next time.", "WTF!? Who are you Dick Cheney?" ]
239+
miss = ["WHOOSH! You missed the duck completely!", "Your gun jammed!", "Better luck next time.", "WTF?! Who are you, Kim Jong Un firing missiles? You missed." ]
240240
if not game_status[network][chan]['game_on']:
241241
return "There is no activehunt right now. Use .starthunt to start a game."
242242
elif game_status[network][chan]['duck_status'] != 1:
@@ -299,7 +299,7 @@ def befriend(nick, chan, message, db, conn, notice):
299299
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 freaking creepy."
303303
else:
304304
game_status[network][chan]['shoot_time'] = time()
305305
deploy = game_status[network][chan]['duck_time']

0 commit comments

Comments
 (0)