From 3a10ee852a539fc7e4ed6484493daede0e5945f2 Mon Sep 17 00:00:00 2001 From: davipatury Date: Sat, 4 Mar 2017 14:17:57 -0300 Subject: [PATCH] Crazylemon's suggestion. --- code/datums/wires/wires.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/datums/wires/wires.dm b/code/datums/wires/wires.dm index 9558ea56e1b..9cc386a7975 100644 --- a/code/datums/wires/wires.dm +++ b/code/datums/wires/wires.dm @@ -131,8 +131,10 @@ var/list/wireColours = list("red", "blue", "green", "black", "orange", "brown", L.put_in_hands(O) else if(istype(I, /obj/item/device/assembly/signaler)) - L.drop_item() - Attach(colour, I) + if(L.drop_item()) + Attach(colour, I) + else + to_chat(L, "[L.get_active_hand()] is stuck to your hand!") else to_chat(L, "You need a remote signaller!")