From 44e024a62f71cffb160c9cbf21eff07fbc49046b Mon Sep 17 00:00:00 2001
From: Detective Google <48196179+Detective-Google@users.noreply.github.com>
Date: Sun, 16 Aug 2020 18:44:05 -0500
Subject: [PATCH] specification
---
code/game/turfs/simulated/floor/plating.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm
index 480eaef51c..594c0150cb 100644
--- a/code/game/turfs/simulated/floor/plating.dm
+++ b/code/game/turfs/simulated/floor/plating.dm
@@ -89,16 +89,16 @@
return
var/obj/item/stack/sheet/rglass/RG = C
if (RG.get_amount() < 2)
- to_chat(user, "You need two glass sheets to make a glass floor!")
+ to_chat(user, "You need two reinforced glass sheets to make a reinforced glass floor!")
return
else
- to_chat(user, "You begin adding glass to the floor...")
+ to_chat(user, "You begin adding reinforced glass to the floor...")
if(do_after(user, 10, target = src))
if (RG.get_amount() >= 2 && !istype(src, /turf/open/transparent/glass/reinforced))
PlaceOnTop(/turf/open/transparent/glass/reinforced, flags = CHANGETURF_INHERIT_AIR)
playsound(src, 'sound/items/deconstruct.ogg', 80, 1)
RG.use(2)
- to_chat(user, "You add glass to the floor.")
+ to_chat(user, "You add reinforced glass to the floor.")
return
else if(istype(C, /obj/item/stack/tile))
if(!broken && !burnt)