diff --git a/full_abyssal_beasts.py b/full_abyssal_beasts.py index 2b39f7e..58a514d 100644 --- a/full_abyssal_beasts.py +++ b/full_abyssal_beasts.py @@ -114,12 +114,12 @@ def start_abyssal_beasts(): print("Pressed space - looting") delta_to_dose_end = dose_ends_at - datetime.now() print(f"Time until dose ends: {delta_to_dose_end}") - if (delta_to_dose_end.total_seconds() < timedelta(seconds=60).total_seconds()): + if (delta_to_dose_end.total_seconds() < timedelta(seconds=90).total_seconds()): print("Reduced sleep") random_sleep_between(25_000, 40_000) else: print("Regular sleep") - random_sleep_between(25_000, 70_000) + random_sleep_between(45_000, 100_000) def add_keybind(keybind: str | Key, action: Callable):