mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Human (and sub-races) are no longer cloned with clothes.
This commit is contained in:
@@ -532,3 +532,15 @@
|
||||
break //5 slots available, so no more can be added.
|
||||
num++
|
||||
src.client.screen += src.hud_used.item_action_list
|
||||
|
||||
//Used for new human mobs created by cloning/goleming/etc.
|
||||
/mob/living/carbon/human/proc/set_cloned_appearance()
|
||||
f_style = "Shaved"
|
||||
if(dna.species == "Human") //no more xenos losing ears/tentacles
|
||||
h_style = pick("Bedhead", "Bedhead 2", "Bedhead 3")
|
||||
undershirt = undershirt_t.Find("None")
|
||||
if(gender == MALE)
|
||||
underwear = underwear_m.Find("None")
|
||||
else
|
||||
underwear = underwear_f.Find("None")
|
||||
regenerate_icons()
|
||||
|
||||
@@ -209,9 +209,7 @@
|
||||
H.dna.UpdateSE()
|
||||
H.dna.UpdateUI()
|
||||
|
||||
H.f_style = "Shaved"
|
||||
if(R.dna.species == "Human") //no more xenos losing ears/tentacles
|
||||
H.h_style = pick("Bedhead", "Bedhead 2", "Bedhead 3")
|
||||
H.set_cloned_appearance()
|
||||
|
||||
for(var/datum/language/L in R.languages)
|
||||
H.add_language(L.name)
|
||||
|
||||
Reference in New Issue
Block a user