From 961b08a399e53bee9fd141a536f3d2ccac6253ca Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 26 Mar 2020 22:20:50 +0000 Subject: [PATCH] Check `joined_world=True` on `handle_stop_walking` --- houdini/handlers/play/pet.py | 1 + 1 file changed, 1 insertion(+) diff --git a/houdini/handlers/play/pet.py b/houdini/handlers/play/pet.py index 39fca0e..551c4b5 100644 --- a/houdini/handlers/play/pet.py +++ b/houdini/handlers/play/pet.py @@ -445,6 +445,7 @@ async def handle_wear_puffle(p, item_id: int): @handlers.disconnected @handlers.player_attribute(client_type=ClientType.Legacy) +@handlers.player_attribute(joined_world=True) async def handle_stop_walking(p): if p.walking: await p.update(hand=None, walking=None).apply()