This commit is contained in:
timothyteakettle
2021-09-01 17:54:14 +01:00
parent aa422f3180
commit a33a7ed249
3 changed files with 10 additions and 0 deletions

View File

@@ -386,6 +386,13 @@
qdel(language_holder)
var/species_holder = initial(mrace.species_language_holder)
language_holder = new species_holder(src)
//provide the user's additional language to the new language holder even if they change species
if(additional_language && additional_language != "None")
var/language_entry = GLOB.roundstart_languages[additional_language]
if(language_entry)
grant_language(language_entry, TRUE, TRUE)
update_atom_languages()
/mob/living/carbon/human/set_species(datum/species/mrace, icon_update = TRUE, pref_load = FALSE)