From 6368447f83ffd2d7a9249904366e559734ce035c Mon Sep 17 00:00:00 2001 From: datlo Date: Thu, 24 Oct 2019 20:41:36 +0200 Subject: [PATCH] Add nodrop notification --- code/game/objects/items/weapons/storage/artistic_toolbox.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/storage/artistic_toolbox.dm b/code/game/objects/items/weapons/storage/artistic_toolbox.dm index dfdf57f4b47..48d59ad8830 100644 --- a/code/game/objects/items/weapons/storage/artistic_toolbox.dm +++ b/code/game/objects/items/weapons/storage/artistic_toolbox.dm @@ -27,7 +27,8 @@ to_chat(user, "His Grace [flags & NODROP ? "releases from" : "binds to"] your hand!") flags ^= NODROP else if(!activated && loc == user) - link_user(user) + if(link_user(user)) + to_chat(user, "Call to His Grace again if you wish it bound to your hand!") else to_chat(user, "You can't seem to understand what this does.") @@ -64,6 +65,8 @@ to_chat(user, "[up_and_down]") to_chat(user, "His Grace accepts thee, spread His will! All who look close to the Enlightened may share His gifts.") original_owner = user + return TRUE + return FALSE /obj/item/storage/toolbox/green/memetic/attackby(obj/item/I, mob/user) if(activated)