diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 2fafbe7d27..399da8d0ca 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -226,11 +226,12 @@ /obj/item/attack_hand(mob/living/user as mob) if (!user) return + ..() if(anchored) // Start CHOMPStation Edit if(hascall(src, "attack_self")) return src.attack_self(user) else - to_chat ("This is anchored and you can't lift it.") + to_chat (user, "This is anchored and you can't lift it.") return // End CHOMPStation Edit if (hasorgans(user)) var/mob/living/carbon/human/H = user @@ -1024,4 +1025,4 @@ Note: This proc can be overwritten to allow for different types of auto-alignmen return /obj/item/proc/get_welder() - return \ No newline at end of file + return