From 9f6d46ddf021841f64a3bbf470b723aaf3743a1f Mon Sep 17 00:00:00 2001 From: Markolie Date: Sun, 9 Aug 2015 19:37:33 +0200 Subject: [PATCH] Close span tags --- code/game/objects/items.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index e14f8ef4406..d5d1705dae5 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -139,10 +139,10 @@ if (user.hand) temp = H.organs_by_name["l_hand"] if(!temp) - user << "You try to use your hand, but it's missing!" + user << "You try to use your hand, but it's missing!" return 0 if(temp && !temp.is_usable()) - user << "You try to move your [temp.name], but cannot!" + user << "You try to move your [temp.name], but cannot!" return 0 if (istype(src.loc, /obj/item/weapon/storage))