fixes a very hilarious grey autocloner bug (#24038)

* fixes a very hillarious grey autocloner bug

* actually move it here so languages are kept
This commit is contained in:
Qwertytoforty
2024-02-05 21:56:33 -05:00
committed by GitHub
parent ac48101fd8
commit 782290cd62

View File

@@ -56,7 +56,6 @@
R.dna = new /datum/dna()
var/mob/living/carbon/human/H = new /mob/living/carbon/human(src)
H.set_species(/datum/species/grey) //This is a grey cloner after all. Funnier this way tbh
occupant = H
if(!R.dna.real_name) //to prevent null names
@@ -66,6 +65,8 @@
H.dna = R.dna.Clone()
H.set_species(/datum/species/grey) //This is a grey cloner after all. Funnier this way tbh
for(var/datum/language/L in R.languages)
H.add_language(L.name)