mirror of
https://github.com/solero/houdini.git
synced 2024-11-08 20:28:20 +00:00
Send gwcj
to update queue widget when joining Card Jitsu mats
This commit is contained in:
parent
75c970c4ca
commit
2d6fe99b3b
@ -14,6 +14,10 @@ async def handle_get_waddle_population(p):
|
||||
async def handle_join_waddle(p, waddle_id: int):
|
||||
try:
|
||||
waddle = p.room.waddles[waddle_id]
|
||||
|
||||
if waddle.game in ['card', 'water', 'fire'] and waddle.penguins.count(None) < waddle.seats:
|
||||
await p.send_xt('gwcj', *(penguin.id for penguin in waddle.penguins if penguin is not None))
|
||||
|
||||
await waddle.add_penguin(p)
|
||||
except KeyError:
|
||||
p.logger.warn(f'{p.username} tried to join a waddle that doesn\'t exist')
|
||||
|
Loading…
Reference in New Issue
Block a user