diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 532a4bc52c2..a905e5d90aa 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -385,13 +385,13 @@ item.layer = initial(item.layer) u_equip(item) update_icons() - //if(src.client) - //src.client.screen -= item - if (istype(user, /mob/living/carbon/monkey)) - item.loc = src.loc - //if(istype(item, /obj/item)) - //item:dropped(src) // let it know it's been dropped + if (istype(usr, /mob/living/carbon/monkey)) //Check if a monkey is throwing. Modify/remove this line as required. + item.loc = src.loc + if(src.client) + src.client.screen -= item + if(istype(item, /obj/item)) + item:dropped(src) // let it know it's been dropped //actually throw it! if (item)