Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Bomberman/bomberman/world.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ def remove_character(self, character):
i = self.index(character.x, character.y)
if (i in self.characters) and (character in self.characters[i]):
self.characters[i].remove(character)
if not self.characters[i]:
del self.characters[i]

def check_blast(self, bomb, x, y):
# Check if a wall has been hit
Expand Down