From 0f40fb1e00a2b26cfd3100c4f959fa6ac03798f0 Mon Sep 17 00:00:00 2001 From: Kano <89972582+kano-dot@users.noreply.github.com> Date: Sat, 9 May 2026 00:21:26 +0300 Subject: [PATCH] Fixes walls not updating damage overlay status when fixed (#22418) ## About PR Title, one line very important high effort fix! --- code/game/turfs/simulated/wall_attacks.dm | 1 + html/changelogs/kano-dot-good-as-new-walls.yml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 html/changelogs/kano-dot-good-as-new-walls.yml diff --git a/code/game/turfs/simulated/wall_attacks.dm b/code/game/turfs/simulated/wall_attacks.dm index 55c13be8bff..ae52c41ae6e 100644 --- a/code/game/turfs/simulated/wall_attacks.dm +++ b/code/game/turfs/simulated/wall_attacks.dm @@ -180,6 +180,7 @@ if(WT.use_tool(src, user, max(5, abs(health - maxhealth) / 5), volume = 50) && WT && WT.isOn()) to_chat(user, SPAN_NOTICE("You finish repairing the damage to [src].")) add_health(maxhealth - health) + update_icon() clear_bulletholes() else to_chat(user, SPAN_NOTICE("You need more welding fuel to complete this task.")) diff --git a/html/changelogs/kano-dot-good-as-new-walls.yml b/html/changelogs/kano-dot-good-as-new-walls.yml new file mode 100644 index 00000000000..0a2d3aafd57 --- /dev/null +++ b/html/changelogs/kano-dot-good-as-new-walls.yml @@ -0,0 +1,6 @@ +author: Kano + +delete-after: True + +changes: + - bugfix: "Fixed walls not updating damage overlay status when fixed."