Skip to content

Commit 444d18e

Browse files
committed
Fix tests
1 parent 004cee7 commit 444d18e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/quantum_rpg/battle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def _print_battle_summary(self):
215215
if i < len(self.player_side):
216216
end_status = "Still up."
217217
cur_player = self.player_side[i]
218-
if self.cur_player.is_down():
218+
if cur_player.is_down():
219219
end_status = "DOWN"
220220
elif cur_player.is_escaped():
221221
end_status = "ESCAPED"

0 commit comments

Comments
 (0)