From 22282062d0589d2ed2ce2b746cc1baced16ac795 Mon Sep 17 00:00:00 2001 From: san7890 <34697715+san7890@users.noreply.github.com> Date: Fri, 25 Feb 2022 18:15:10 -0700 Subject: [PATCH] Handful of Glass Floor Spellchecks (#65139) Weird capitalizations (decapitalized to match the other floor turfs) and a missing apostrophe have all flown off into the wind. Actually, the apostophe didn't fly off into the wind, it came in on the wind- forget it. --- code/game/turfs/open/glass.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/turfs/open/glass.dm b/code/game/turfs/open/glass.dm index e79f392f67d..19e81f63c25 100644 --- a/code/game/turfs/open/glass.dm +++ b/code/game/turfs/open/glass.dm @@ -1,6 +1,6 @@ /turf/open/floor/glass - name = "Glass floor" - desc = "Dont jump on it, or do, I'm not your mom." + name = "glass floor" + desc = "Don't jump on it, or do, I'm not your mom." icon = 'icons/turf/floors/glass.dmi' icon_state = "glass-0" base_icon_state = "glass" @@ -28,7 +28,7 @@ AddElement(/datum/element/turf_z_transparency) /turf/open/floor/glass/reinforced - name = "Reinforced glass floor" + name = "reinforced glass floor" desc = "Do jump on it, it can take it." icon = 'icons/turf/floors/reinf_glass.dmi' icon_state = "reinf_glass-0"