Tweak duck timing.

This commit is contained in:
dngfx 2018-09-08 17:15:11 +01:00 committed by dongfix
parent 54c9616d4c
commit f0c966403b

View file

@ -104,7 +104,7 @@ class Module(object):
self.clear_ducks(channel)
def generate_next_duck_time(self):
rand_time = random.randint(int(time()) + 300, int(time()) + 1200)
rand_time = random.randint(int(time()) + 180, int(time()) + 960)
return rand_time
def is_duck_visible(self, event):