Fixes mutant bodypart assignments

This commit is contained in:
ShizCalev
2018-03-30 14:42:00 -04:00
committed by CitadelStationBot
parent dcaf3e2575
commit 1c76539a5b
10 changed files with 25 additions and 19 deletions
+4 -2
View File
@@ -415,8 +415,10 @@
if(H.dna.species.id == "human")
if(H.dna.features["tail_human"] == "None" || H.dna.features["ears"] == "None")
H.dna.features["tail_human"] = "Cat"
H.dna.features["ears"] = "Cat"
var/obj/item/organ/ears/cat/ears = new
var/obj/item/organ/tail/cat/tail = new
ears.Insert(H, drop_if_replaced=FALSE)
tail.Insert(H, drop_if_replaced=FALSE)
var/list/honorifics = list("[MALE]" = list("kun"), "[FEMALE]" = list("chan","tan"), "[NEUTER]" = list("san")) //John Robust -> Robust-kun
var/list/names = splittext(H.real_name," ")
var/forename = names.len > 1 ? names[2] : names[1]
-3
View File
@@ -1232,9 +1232,6 @@ GLOBAL_LIST_EMPTY(custom_outfits) //Admin created outfits
else
tail.Remove(H)
H.dna.features["ears"] = "None"
H.dna.features["tail_human"] = "None"
if(!silent)
to_chat(H, "You are no longer a cat.")