mirror of
https://github.com/solero/houdini.git
synced 2024-11-08 20:28:20 +00:00
Fix AttributeError in temporary room waddle instances
This commit is contained in:
parent
815f16c008
commit
79a5c43a66
@ -282,12 +282,13 @@ class RoomWaddle(db.Model):
|
|||||||
|
|
||||||
if self.penguins.count(None) == 0:
|
if self.penguins.count(None) == 0:
|
||||||
game_instance = self.logic(self)
|
game_instance = self.logic(self)
|
||||||
|
|
||||||
await game_instance.start()
|
await game_instance.start()
|
||||||
|
|
||||||
await self.reset()
|
await self.reset()
|
||||||
|
|
||||||
if self.temporary:
|
if self.temporary:
|
||||||
del p.server.rooms[self.room_id].waddles[self.id]
|
del self.room.waddles[self.id]
|
||||||
|
|
||||||
async def remove_penguin(self, p):
|
async def remove_penguin(self, p):
|
||||||
seat_id = self.get_seat_id(p)
|
seat_id = self.get_seat_id(p)
|
||||||
@ -297,7 +298,7 @@ class RoomWaddle(db.Model):
|
|||||||
p.waddle = None
|
p.waddle = None
|
||||||
|
|
||||||
if self.temporary and self.penguins.count(None) == self.seats:
|
if self.temporary and self.penguins.count(None) == self.seats:
|
||||||
del p.server.rooms[self.room_id].waddles[self.id]
|
del self.room.waddles[self.id]
|
||||||
|
|
||||||
async def reset(self):
|
async def reset(self):
|
||||||
for seat_id, penguin in enumerate(self.penguins):
|
for seat_id, penguin in enumerate(self.penguins):
|
||||||
|
Loading…
Reference in New Issue
Block a user