diff options
Diffstat (limited to 'stage/stage.gd')
-rw-r--r-- | stage/stage.gd | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stage/stage.gd b/stage/stage.gd index b25e1da..ad3b7a8 100644 --- a/stage/stage.gd +++ b/stage/stage.gd @@ -147,7 +147,6 @@ func attack_entity(grid_position: Vector2i, attacking_entity_node_path: String, if target_entity is PlayerUnit: target_entity.current_hp -= 1 - print(target_entity, target_entity.current_hp) if target_entity.current_hp <= 0: target_entity.queue_free() print("GAME OVER!!") |