From 4d32d068dce34ec3151fc591b8924835db68dba6 Mon Sep 17 00:00:00 2001 From: VinPropane Date: Mon, 25 May 2026 13:26:09 -0400 Subject: [PATCH] NEO-85: Fix gdlint max line length in combat HP label render. --- client/scripts/main.gd | 4 +++- client/test/prototype_target_constants_test.gd | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/scripts/main.gd b/client/scripts/main.gd index d099ad2..409ec8e 100644 --- a/client/scripts/main.gd +++ b/client/scripts/main.gd @@ -916,7 +916,9 @@ func _render_combat_target_hp_label() -> void: var current: int = int(row.get("currentHp", 0)) var max_hp: int = int(row.get("maxHp", 0)) var defeated_suffix := " (defeated)" if bool(row.get("defeated", false)) else "" - _combat_target_hp_label.text = "Target HP: %s %d/%d%s" % [lock_id, current, max_hp, defeated_suffix] + _combat_target_hp_label.text = ( + "Target HP: %s %d/%d%s" % [lock_id, current, max_hp, defeated_suffix] + ) func _on_move_rejected(reason_code: String) -> void: diff --git a/client/test/prototype_target_constants_test.gd b/client/test/prototype_target_constants_test.gd index e354213..152d11b 100644 --- a/client/test/prototype_target_constants_test.gd +++ b/client/test/prototype_target_constants_test.gd @@ -1,6 +1,6 @@ extends GdUnitTestSuite -## NEO-85: prototype target display helpers for combat dummy markers. +## NEO-85: prototype target display helpers for combat dummy markers and HUD copy. const PrototypeTargetConstants := preload("res://scripts/prototype_target_constants.gd")