From 2675e6b4e79801502e87598ad50dc86511f676a2 Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 5 Jun 2020 22:47:38 +0100 Subject: [PATCH] Reduce Puffle dig packet cooldown to 60s --- houdini/handlers/play/pet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/houdini/handlers/play/pet.py b/houdini/handlers/play/pet.py index fadb13b..a392732 100644 --- a/houdini/handlers/play/pet.py +++ b/houdini/handlers/play/pet.py @@ -708,7 +708,7 @@ async def handle_care_station_menu_choice(p, item_id: int): @handlers.handler(XTPacket('p', 'puffledig'), client=ClientType.Vanilla) -@handlers.cooldown(119) +@handlers.cooldown(60) async def handle_puffle_dig(p): await dig(p)