From 16fde126e665fe04873df75758e82ef0baf6ea98 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sat, 7 Aug 2021 18:39:27 -0400 Subject: [PATCH] Fixes #11352 Allow promethean boops --- .../mob/living/carbon/human/species/station/prometheans.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans.dm b/code/modules/mob/living/carbon/human/species/station/prometheans.dm index 082ade05443..ef841a3baba 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -150,8 +150,11 @@ var/datum/species/shapeshifter/promethean/prometheans H.equip_to_slot_or_del(L, slot_in_backpack) /datum/species/shapeshifter/promethean/hug(var/mob/living/carbon/human/H, var/mob/living/target) - - if(H.zone_sel.selecting == "head" || H.zone_sel.selecting == "r_hand" || H.zone_sel.selecting == "l_hand") return ..() //VOREStation Edit + var/static/list/parent_handles = list("head", "r_hand", "l_hand", "mouth") + + if(H.zone_sel.selecting in parent_handles) + return ..() + var/t_him = "them" if(ishuman(target)) var/mob/living/carbon/human/T = target