From 2440b7a23b8ac8e655185bcaf82e70640081187a Mon Sep 17 00:00:00 2001 From: Luc <89928798+lewcc@users.noreply.github.com> Date: Sun, 15 Oct 2023 13:11:56 -0400 Subject: [PATCH] uh oh! (#22904) --- code/game/objects/items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 69ff46b6af3..9ccf16d7f53 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -760,7 +760,7 @@ GLOBAL_DATUM_INIT(welding_sparks, /mutable_appearance, mutable_appearance('icons return ..() /obj/item/MouseDrop_T(obj/item/I, mob/user) - if(!user || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || src == I) + if(!user || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || src == I || !isliving(user)) return if(loc && I.loc == loc && isstorage(loc) && loc.Adjacent(user)) // Are we trying to swap two items in the storage?