From be3000d8ca17b516253b3b3d72e2242e166596a3 Mon Sep 17 00:00:00 2001 From: James Date: Sat, 10 Aug 2019 19:25:07 +1000 Subject: [PATCH] All windows now have consistant spans (#45809) * R-Windows now have consistant examine messages * I forgot plasma windows too --- code/game/objects/structures/window.dm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index cce1cd41718..836f231ce43 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -435,15 +435,15 @@ . = ..() switch(state) if(RWINDOW_SECURE) - . += "It's been screwed in with one way screws, you'd need to heat them to have any chance of backing them out." + . += "It's been screwed in with one way screws, you'd need to heat them to have any chance of backing them out." if(RWINDOW_BOLTS_HEATED) - . += "The screws are glowing white hot, and you'll likely be able to unscrew them now." + . += "The screws are glowing white hot, and you'll likely be able to unscrew them now." if(RWINDOW_BOLTS_OUT) - . += "The screws have been removed, revealing a small gap you could fit a prying tool in." + . += "The screws have been removed, revealing a small gap you could fit a prying tool in." if(RWINDOW_POPPED) - . += "The main plate of the window has popped out of the frame, exposing some bars that look like they can be cut." + . += "The main plate of the window has popped out of the frame, exposing some bars that look like they can be cut." if(RWINDOW_BARS_CUT) - . += "The main pane can be easily moved out of the way to reveal some bolts holding the frame in." + . += "The main pane can be easily moved out of the way to reveal some bolts holding the frame in." /obj/structure/window/reinforced/spawner/east dir = EAST @@ -554,15 +554,15 @@ . = ..() switch(state) if(RWINDOW_SECURE) - . += "It's been screwed in with one way screws, you'd need to heat them to have any chance of backing them out." + . += "It's been screwed in with one way screws, you'd need to heat them to have any chance of backing them out." if(RWINDOW_BOLTS_HEATED) - . += "The screws are glowing white hot, and you'll likely be able to unscrew them now." + . += "The screws are glowing white hot, and you'll likely be able to unscrew them now." if(RWINDOW_BOLTS_OUT) - . += "The screws have been removed, revealing a small gap you could fit a prying tool in." + . += "The screws have been removed, revealing a small gap you could fit a prying tool in." if(RWINDOW_POPPED) - . += "The main plate of the window has popped out of the frame, exposing some bars that look like they can be cut." + . += "The main plate of the window has popped out of the frame, exposing some bars that look like they can be cut." if(RWINDOW_BARS_CUT) - . += "The main pane can be easily moved out of the way to reveal some bolts holding the frame in." + . += "The main pane can be easily moved out of the way to reveal some bolts holding the frame in." /obj/structure/window/plasma/reinforced/spawner/east dir = EAST