Skip to content

Commit

Permalink
Humanizing monkeys removes undergarments (tgstation#84439)
Browse files Browse the repository at this point in the history
## 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:
  • Loading branch information
MrMelbert authored Jun 30, 2024
1 parent 4032bcd commit f457cbc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code/modules/mob/transform_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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."))
Expand All @@ -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()

Expand Down

0 comments on commit f457cbc

Please sign in to comment.