From ffd03f617a707b92944d862d4c51a2af894b0fa4 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 5 Feb 2021 22:22:25 +0100 Subject: [PATCH] [MIRROR] Fixes gorillification for radiated monkeys (#3098) * Fixes gorillification for radiated monkeys * a Co-authored-by: Couls Co-authored-by: Gandalf2k15 --- .../mob/living/carbon/human/species_types/monkeys.dm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/monkeys.dm b/code/modules/mob/living/carbon/human/species_types/monkeys.dm index 8934d7d587a..f79675fbcc2 100644 --- a/code/modules/mob/living/carbon/human/species_types/monkeys.dm +++ b/code/modules/mob/living/carbon/human/species_types/monkeys.dm @@ -91,11 +91,13 @@ target.attack_paw(user, modifiers) return TRUE -//SKYRAT EDIT REMOVAL BEGIN -/* +/datum/species/monkey/handle_mutations_and_radiation(mob/living/carbon/human/H) + . = ..() + if(H.radiation > RAD_MOB_MUTATE * 2 && prob(50)) + H.gorillize() + return + /datum/species/monkey/check_roundstart_eligible() if(SSevents.holidays && SSevents.holidays[MONKEYDAY]) return TRUE return ..() -*/ -//SKYRAT EDIT REMOVAL END