From 32d2b4151658bc490f8878add73b2d278767a53e Mon Sep 17 00:00:00 2001 From: "ericgfwong@hotmail.com" Date: Sun, 17 Jun 2012 09:20:38 +0000 Subject: [PATCH] -Correcting user text for windoor assemblies to say plasteel instead of rods git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3850 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/windoor_assembly.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/windoor_assembly.dm b/code/game/objects/windoor_assembly.dm index eae96ba5a8e..75dbae2a10a 100644 --- a/code/game/objects/windoor_assembly.dm +++ b/code/game/objects/windoor_assembly.dm @@ -106,13 +106,13 @@ obj/structure/windoor_assembly/Del() else src.name = "Windoor Assembly" - //Adding r-glass makes the assembly a secure windoor assembly. Step 2 (optional) complete. + //Adding plasteel makes the assembly a secure windoor assembly. Step 2 (optional) complete. else if(istype(W, /obj/item/stack/sheet/plasteel) && !secure) var/obj/item/stack/sheet/plasteel/P = W if(P.amount < 2) - user << "\red You need more rods to do this." + user << "\red You need more plasteel to do this." return - user << "\blue You start to reinforce the windoor with rods." + user << "\blue You start to reinforce the windoor with plasteel." if(do_after(user,40)) if(!src) return