diff --git a/src/model/turn.py b/src/model/turn.py index 7fc33dc..b67eb89 100644 --- a/src/model/turn.py +++ b/src/model/turn.py @@ -318,7 +318,7 @@ class Turn(Serializable): continue if not c.guard and self.check_for_guard(p.team): print("You cannot stun this champion if a guard is present") - return + return False await self.player.stun(str(c.uuid)) await self.player.game.notify_controller( @@ -327,7 +327,7 @@ class Turn(Serializable): await self.player.game.notify_controller( MessageType.UPDATE, p.turn.serialize() ) - return + return True print("card not found")