From c30482257134fadf3d539dc5c465c0bf68b1be84 Mon Sep 17 00:00:00 2001 From: Natalie Date: Mon, 13 Apr 2026 00:09:33 -0700 Subject: [PATCH] =?UTF-8?q?fix(@projects/@magic-civilization):=20?= =?UTF-8?q?=F0=9F=90=9B=20remove=20redundant=20quality=20print?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/game/engine/scenes/tests/auto_play.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/engine/scenes/tests/auto_play.gd b/src/game/engine/scenes/tests/auto_play.gd index 85eacc1c..895c8cb9 100644 --- a/src/game/engine/scenes/tests/auto_play.gd +++ b/src/game/engine/scenes/tests/auto_play.gd @@ -1177,7 +1177,7 @@ func _command_unit(unit: Variant, player: RefCounted, game_map: RefCounted) -> v _world_map._select_unit(unit) if _world_map != null and _world_map.has_method("_on_found_city_pressed"): _world_map._on_found_city_pressed() - print(" Founded city at %s (quality=%.1f)" % [unit.position, site_quality]) + print(" Founded city at %s" % unit.position) return var target_pos: Vector2i = _find_attack_target(player)