From c098caad8791aa97be9e4fed35266fa4c423ff47 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Fri, 6 Feb 2026 21:26:06 +0100 Subject: [PATCH] Fixes the fluff maint panel names (#21815) As per the title. Removes the _ that was in the name. --- .../objects/structures/fluff/engineering/maintenance.dm | 2 +- html/changelogs/MaintPanelFix.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/MaintPanelFix.yml diff --git a/code/game/objects/structures/fluff/engineering/maintenance.dm b/code/game/objects/structures/fluff/engineering/maintenance.dm index 2a3741d0a90..e90e0e045a3 100644 --- a/code/game/objects/structures/fluff/engineering/maintenance.dm +++ b/code/game/objects/structures/fluff/engineering/maintenance.dm @@ -52,7 +52,7 @@ ABSTRACT_TYPE(/obj/structure/engineer_maintenance) . = ..() // Floor panels are smaller and should be layered beneath dropped objects other structures. if(panel_location == PANEL_LOCATION_FLOOR) - name = "maintenance_panel" + name = "maintenance panel" layer = EXPOSED_WIRE_TERMINAL_LAYER else name = "large maintenance panel" diff --git a/html/changelogs/MaintPanelFix.yml b/html/changelogs/MaintPanelFix.yml new file mode 100644 index 00000000000..6a460d0d1f9 --- /dev/null +++ b/html/changelogs/MaintPanelFix.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Fixed the name of the fluff maintenance panels around the ship."