diff options
| author | 2018-08-31 18:31:46 +0100 | |
|---|---|---|
| committer | 2018-08-31 18:31:46 +0100 | |
| commit | 4a9d823d54ce2341cccb5947c7b16f612fd7251c (patch) | |
| tree | aaf2967a1fd037c3342281bc9103042e5aa37ec6 /modules | |
| parent | Introduce .killers for ducks.py (diff) | |
| signature | ||
Adjust timing for production.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/ducks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ducks.py b/modules/ducks.py index 72aca2f8..b79b6d97 100644 --- a/modules/ducks.py +++ b/modules/ducks.py @@ -30,7 +30,7 @@ class Module(object): # help="Shows a list of the most popular duck superstars.") now = datetime.datetime.now() - next_duck_time = random.randint(30, 40) + next_duck_time = random.randint(120, 1200) self.duck_times = {} self.decoys = {} @@ -96,7 +96,7 @@ class Module(object): return random.randint(self.duck_times[min], self.duck_times[max]) def decoy_time(self): - return random.randint(10, 20) + return random.randint(60, 180) def duck_enemies(self, event): the_enemy = event["server"].find_all_user_channel_settings( |
