mirror of
https://github.com/solero/houdini.git
synced 2024-11-08 20:28:20 +00:00
Add missing player handlers
This commit is contained in:
parent
8a6391c871
commit
b43eac649a
@ -314,6 +314,21 @@ async def handle_send_mascot_message(p, message_id: int):
|
||||
await p.room.send_xt('sma', p.id, message_id)
|
||||
|
||||
|
||||
@handlers.handler(XTPacket('u', 'sj'))
|
||||
async def handle_send_joke(p, message_id: int):
|
||||
await p.room.send_xt('sj', p.id, message_id)
|
||||
|
||||
|
||||
@handlers.handler(XTPacket('u', 'sl'))
|
||||
async def handle_send_stage_line_message(p, message_id: int):
|
||||
await p.room.send_xt('sl', p.id, message_id)
|
||||
|
||||
|
||||
@handlers.handler(XTPacket('u', 'sg'))
|
||||
async def handle_send_tour_guide_message(p, message_id: int):
|
||||
await p.room.send_xt('sg', p.id, message_id)
|
||||
|
||||
|
||||
@handlers.handler(XTPacket('u', 'glr'))
|
||||
async def handle_get_last_revision(p):
|
||||
await p.send_xt('glr', 'houdini')
|
||||
|
Loading…
Reference in New Issue
Block a user