Skip to content

Commit 1f64323

Browse files
antithalianJohn Sullivan
authored andcommitted
raises chance of a miss to 1 in 4
1 parent a0e2ec6 commit 1f64323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bobbit/modules/duckhunt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Todo:
66
[ ] Add colors
77
[X] Implement gun jamming / reloading
8-
[ ] Add more messages
8+
[X] Add more messages
99
[ ] Make kill/save commands configurable
1010
[x] Make channels configurable
1111
[ ] Fix plural
@@ -112,7 +112,7 @@ async def ducks(bot, message, command, other=None):
112112

113113
# Check time (anti-bot) and random chance of missing
114114
elapsed = current_time - Ducks[channel]
115-
if elapsed < 1.0 or random.random() > 0.85:
115+
if elapsed < 1.0 or random.random() > 0.75:
116116
# Give them a timeout.
117117
Cooldowns[channel][nick] = current_time + COOLDOWN_AMOUNT
118118
return message.with_body(' '.join([

0 commit comments

Comments
 (0)