From 880f115d56428c788dfef603773a882584705bc0 Mon Sep 17 00:00:00 2001 From: taukausanake Date: Thu, 10 Mar 2016 23:58:45 -0600 Subject: [PATCH] I DID IT! Added a check for mice in get_scooped(). Shouldn't conflict with pAI but might argue it's "snowflake" code. Well fuck that, it WORKS --- code/modules/mob/holder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index 832a0688254..14e6e815374 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -62,7 +62,7 @@ var/obj/item/weapon/holder/H = new holder_type(loc) src.forceMove(H) H.name = name - H.icon_state = icon_state + if(istype(H, /obj/item/weapon/holder/mouse)) H.icon_state = icon_state if(desc) H.desc = desc H.attack_hand(grabber)