From 5dcb973956b8380e2d7eda6521f08d8d0d4f19de Mon Sep 17 00:00:00 2001 From: san7890 <34697715+san7890@users.noreply.github.com> Date: Fri, 15 Apr 2022 14:33:51 -0600 Subject: [PATCH] Adds Descriptive Names to Sandy Turf Decals (#66110) It's kinda annoying that they're both called "plating" even though one is the decal and one is the base turf. Let's fix that by adding names. --- code/game/objects/effects/decals/turfdecal/dirt.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/effects/decals/turfdecal/dirt.dm b/code/game/objects/effects/decals/turfdecal/dirt.dm index 156c04d1ba3..c7f374cd65e 100644 --- a/code/game/objects/effects/decals/turfdecal/dirt.dm +++ b/code/game/objects/effects/decals/turfdecal/dirt.dm @@ -1,5 +1,7 @@ /obj/effect/turf_decal/sand + name = "sandy floor" icon_state = "sandyfloor" /obj/effect/turf_decal/sand/plating + name = "sandy plating" icon_state = "sandyplating"