Increase cooldown

This commit is contained in:
Tanner Collin 2022-11-14 02:11:24 +00:00
parent 4cc057ea57
commit 7d5d68e29c

View File

@ -43,7 +43,7 @@ async def play_sound(filename):
async def barkbark(sound):
global COOLDOWN
if time.time() - COOLDOWN < 15.0:
if time.time() - COOLDOWN < 20.0:
logging.info('Cooldown skipping.')
return
COOLDOWN = time.time()