diff options
-rw-r--r-- | Scenes/Dungeon.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Scenes/Dungeon.gd b/Scenes/Dungeon.gd index 7440fa8..fc724c4 100644 --- a/Scenes/Dungeon.gd +++ b/Scenes/Dungeon.gd @@ -189,9 +189,9 @@ func _input(event): input = Vector2(+1,0) KEY_LEFT: input = Vector2(-1,0) - KEY_ESCAPE: - Global.turns = Global.STARTING_TURNS - get_tree().change_scene("res://Scenes/Dungeon.tscn") +# KEY_ESCAPE: +# Global.turns = Global.STARTING_TURNS +# get_tree().change_scene("res://Scenes/Dungeon.tscn") func move_entity(entity : Entity, dir : Vector2): var cur_tile = entities_tiles[entity] |