mirror of
https://github.com/solero/houdini.git
synced 2024-11-08 20:28:20 +00:00
Fix puffle hat swap when walking inside igloo
This commit is contained in:
parent
82be875d21
commit
82fbd497a7
@ -654,6 +654,10 @@ async def handle_puffle_visitor_hat_update(p, puffle: PenguinPuffle, hat_id: int
|
||||
if hat_id in p.puffle_items or hat_id == 0:
|
||||
await puffle.update(hat=hat_id if hat_id > 0 else None).apply()
|
||||
await p.room.send_xt('puphi', puffle.id, hat_id)
|
||||
if puffle.id == p.walking:
|
||||
parent_id, puffle_id = get_client_puffle_id(p, puffle.puffle_id)
|
||||
await p.room.send_xt('pw', p.id, puffle.id, 0, 0, 0, 0)
|
||||
await p.room.send_xt('pw', p.id, puffle.id, parent_id, puffle_id, 1, puffle.hat or 0)
|
||||
|
||||
|
||||
@handlers.handler(XTPacket('p', 'pufflewalkswap'), client=ClientType.Vanilla)
|
||||
|
Loading…
Reference in New Issue
Block a user