From 9c99a10c949f55dc5af7d23f01a3619b845d0a6c Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 15 Jul 2021 10:00:56 +0300 Subject: [PATCH] groining --- code/modules/mob/living/carbon/human/species/species.dm | 2 +- code/modules/mob/living/simple_mob/defense.dm | 2 +- code/modules/mob/living/simple_mob/on_click.dm | 2 +- code/modules/mob/living/simple_mob/subtypes/vore/otie.dm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 663546632a..3b69d6c76a 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -431,7 +431,7 @@ H.visible_message( \ "[H] boops [target]'s nose.", \ "You boop [target] on the nose.", ) - else if(H.zone_sel.selecting == "groin") //CHOMPEdit + else if(H.zone_sel.selecting == BP_GROIN) //CHOMPEdit H.vore_bellyrub(target) //VOREStation Edit End else diff --git a/code/modules/mob/living/simple_mob/defense.dm b/code/modules/mob/living/simple_mob/defense.dm index ca8ffb4afe..09d6fc7335 100644 --- a/code/modules/mob/living/simple_mob/defense.dm +++ b/code/modules/mob/living/simple_mob/defense.dm @@ -16,7 +16,7 @@ switch(L.a_intent) if(I_HELP) if(health > 0) - if(L.zone_sel.selecting == "groin") //CHOMPEdit + if(L.zone_sel.selecting == BP_GROIN) //CHOMPEdit if(L.vore_bellyrub(src)) return L.visible_message("\The [L] [response_help] \the [src].") diff --git a/code/modules/mob/living/simple_mob/on_click.dm b/code/modules/mob/living/simple_mob/on_click.dm index eb485d6d9a..74b0236c13 100644 --- a/code/modules/mob/living/simple_mob/on_click.dm +++ b/code/modules/mob/living/simple_mob/on_click.dm @@ -14,7 +14,7 @@ switch(a_intent) if(I_HELP) if(isliving(A)) - if(src.zone_sel.selecting == "groin") //CHOMPEdit + if(src.zone_sel.selecting == BP_GROIN) //CHOMPEdit if(src.vore_bellyrub(A)) return custom_emote(1,"[pick(friendly)] \the [A]!") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm index 76cd5c077f..04e995d7d1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm @@ -274,7 +274,7 @@ switch(M.a_intent) if(I_HELP) if(health > 0) - if(M.zone_sel.selecting == "groin") //CHOMPEdit + if(M.zone_sel.selecting == BP_GROIN) //CHOMPEdit if(M.vore_bellyrub(src)) return M.visible_message("[M] [response_help] \the [src].")