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)