From f457cbc034ed7f84f421f7ca841a369f72b9cdcf Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Sat, 29 Jun 2024 20:08:38 -0500 Subject: [PATCH] Humanizing monkeys removes undergarments (#84439) ## About The Pull Request Humanizing a monkey doesn't result in someone with trans thigh-highs and a bra ## Why It's Good For The Game It is kinda weird and bad for immersion. Humans can just get it back from dressers anyways. ## Changelog :cl: Melbert add: Humanizing a monkey removes undergarments such as socks /:cl: --- code/modules/mob/transform_procs.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index d186661d87f..5d46f3c0dc0 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -67,6 +67,7 @@ transformation_timer = addtimer(CALLBACK(src, PROC_REF(finish_humanize), species), TRANSFORMATION_DURATION, TIMER_UNIQUE) + /mob/living/carbon/proc/finish_humanize(species = /datum/species/human) transformation_timer = null to_chat(src, span_boldnotice("You are now a human.")) @@ -77,6 +78,12 @@ SEND_SIGNAL(src, COMSIG_MONKEY_HUMANIZE) return src +/mob/living/carbon/human/finish_humanize(species = /datum/species/human, instant = FALSE) + underwear = "Nude" + undershirt = "Nude" + socks = "Nude" + return ..() + /mob/proc/AIize(client/preference_source, move = TRUE) var/list/turf/landmark_loc = list()