From c5ae135759574c16bfe2fa49ff264bc78655181b Mon Sep 17 00:00:00 2001 From: killer653 Date: Tue, 29 Aug 2017 17:28:43 -0400 Subject: [PATCH] Kitchi injector fix --- code/modules/vore/fluffstuff/custom_items_vr.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 9ae8076e5a..0330212742 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1359,9 +1359,12 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie icon = 'icons/obj/items.dmi' icon_state = "dnainjector" -/obj/item/weapon/fluff/kitchi_injector/attack_self(mob/user as mob) +/obj/item/weapon/fluff/kitchi_injector/attack(mob/living/M, mob/living/user) - if(ishuman(user)) - var/mob/living/carbon/human/H = user - H.monkeyize() - qdel(src) //One time use. + if(usr == M) //Is the person using it on theirself? + if(ishuman(M)) //If so, monkify them. + var/mob/living/carbon/human/H = user + H.monkeyize() + qdel(src) //One time use. + else //If not, do nothing. + to_chat(user," You are unable to inject other people.")