summaryrefslogtreecommitdiff
path: root/Scenes/Entities/Player.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Scenes/Entities/Player.gd')
-rw-r--r--Scenes/Entities/Player.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Scenes/Entities/Player.gd b/Scenes/Entities/Player.gd
index 77dfac5..1e4b0c2 100644
--- a/Scenes/Entities/Player.gd
+++ b/Scenes/Entities/Player.gd
@@ -183,7 +183,7 @@ func plant_bomb():
self.bombs.append(bomb)
self.last_planted_bomb = bomb
- bomb.connect("exploded", func(_bomb):
+ bomb.tree_exited.connect(func():
self.bombs.erase(bomb)
if self.last_planted_bomb == bomb:
self.last_planted_bomb = null