From 65d2d51f0f4e4be39934db573db057e81f6d46fc Mon Sep 17 00:00:00 2001 From: "trubblebass@gmail.com" Date: Thu, 10 Nov 2011 19:24:01 +0000 Subject: [PATCH] - Fixed a typo in light-tile construction that has been annoying me. It should now read "You attach the wire to the glass" Instead of "You attack the wire to the glass" git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2510 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/stacks/glass.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/stacks/glass.dm b/code/game/objects/stacks/glass.dm index 6665ffcf75f..ca5b0f1e051 100644 --- a/code/game/objects/stacks/glass.dm +++ b/code/game/objects/stacks/glass.dm @@ -84,7 +84,7 @@ SHARDS user << "\b There is not enough wire in this coil. You need 5 lengths." CC.amount -= 5 amount -= 1 - user << "\blue You attack wire to the [name]." + user << "\blue You attach wire to the [name]." new/obj/item/stack/light_w(user.loc) if(CC.amount <= 0) user.u_equip(CC)