aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GameSession/MapText.gd
diff options
context:
space:
mode:
Diffstat (limited to 'game/src/Game/GameSession/MapText.gd')
-rw-r--r--game/src/Game/GameSession/MapText.gd4
1 files changed, 3 insertions, 1 deletions
diff --git a/game/src/Game/GameSession/MapText.gd b/game/src/Game/GameSession/MapText.gd
index 22eba10..619c72f 100644
--- a/game/src/Game/GameSession/MapText.gd
+++ b/game/src/Game/GameSession/MapText.gd
@@ -14,7 +14,9 @@ func _clear_children() -> void:
var child_count : int = get_child_count()
while child_count > 0:
child_count -= 1
- remove_child(get_child(child_count))
+ var child : Node = get_child(child_count)
+ remove_child(child)
+ child.queue_free()
func generate_map_names() -> void:
_clear_children()