Increased wait time.
This commit is contained in:
parent
9fce40e74d
commit
b33fb22374
|
|
@ -114,12 +114,12 @@ def start_abyssal_beasts():
|
||||||
print("Pressed space - looting")
|
print("Pressed space - looting")
|
||||||
delta_to_dose_end = dose_ends_at - datetime.now()
|
delta_to_dose_end = dose_ends_at - datetime.now()
|
||||||
print(f"Time until dose ends: {delta_to_dose_end}")
|
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")
|
print("Reduced sleep")
|
||||||
random_sleep_between(25_000, 40_000)
|
random_sleep_between(25_000, 40_000)
|
||||||
else:
|
else:
|
||||||
print("Regular sleep")
|
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):
|
def add_keybind(keybind: str | Key, action: Callable):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue