From eae8fbfde204c946660657e324c7b3dadc3978e0 Mon Sep 17 00:00:00 2001 From: Mirka-l Date: Wed, 8 Jul 2026 03:14:16 +0300 Subject: [PATCH] Fix simulated floor sprite (#32147) * tile sprite fix * fix for failed test * del icon_state --------- Co-authored-by: Mirka-l --- code/game/machinery/computer/HolodeckControl.dm | 1 - code/game/turfs/simulated/floor.dm | 1 + code/game/turfs/simulated/floor/misc_floor.dm | 1 - code/game/turfs/simulated/floor/plating.dm | 1 - 4 files changed, 1 insertion(+), 3 deletions(-) diff --git a/code/game/machinery/computer/HolodeckControl.dm b/code/game/machinery/computer/HolodeckControl.dm index d01b7a282dd..a95bcce18c7 100644 --- a/code/game/machinery/computer/HolodeckControl.dm +++ b/code/game/machinery/computer/HolodeckControl.dm @@ -224,7 +224,6 @@ // Holographic Items! /turf/simulated/floor/holofloor thermal_conductivity = 0 - icon_state = "plating" /turf/simulated/floor/holofloor/Initialize(mapload) . = ..() diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 4e22a136162..b2570c50d8c 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -15,6 +15,7 @@ GLOBAL_LIST_INIT(icons_to_ignore_at_floor_init, list("damaged1","damaged2","dama plane = FLOOR_PLANE var/icon_regular_floor = "tile_standard" //used to remember what icon the tile should have by default var/icon_plating = "plating" + icon_state = "plating" thermal_conductivity = 0.020 heat_capacity = 100000 var/broken = FALSE diff --git a/code/game/turfs/simulated/floor/misc_floor.dm b/code/game/turfs/simulated/floor/misc_floor.dm index 0aca7b57f67..55e5f9d8e8a 100644 --- a/code/game/turfs/simulated/floor/misc_floor.dm +++ b/code/game/turfs/simulated/floor/misc_floor.dm @@ -186,7 +186,6 @@ /turf/simulated/floor/clockwork name = "clockwork floor" desc = "Tightly-pressed brass tiles. They emit minute vibration." - icon_state = "plating" baseturf = /turf/simulated/floor/clockwork var/dropped_brass var/uses_overlay = TRUE diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm index af173959bc1..7f0cbbdb0af 100644 --- a/code/game/turfs/simulated/floor/plating.dm +++ b/code/game/turfs/simulated/floor/plating.dm @@ -1,7 +1,6 @@ /turf/simulated/floor/plating name = "plating" desc = "Bare hull plating, normally hidden by a layer of flooring. The cavity between the floor and the plating is used to carry cables, pipes, and other utilities." - icon_state = "plating" icon = 'icons/turf/floors/plating.dmi' intact = FALSE floor_tile = null