Fix a few talking issues

Posibrain talking without a language, give speech bubbles to things inside things, especially posibrains, give gibberish a chance instead of using null languages
This commit is contained in:
Aronai Sieyes
2020-05-20 13:52:08 -04:00
parent 49c00572c9
commit 50e09c0ee7
6 changed files with 53 additions and 23 deletions

View File

@@ -386,9 +386,9 @@
return GLOB.all_languages[LANGUAGE_GIBBERISH]
if(!species)
return null
return GLOB.all_languages[LANGUAGE_GIBBERISH]
return species.default_language ? GLOB.all_languages[species.default_language] : null
return species.default_language ? GLOB.all_languages[species.default_language] : GLOB.all_languages[LANGUAGE_GIBBERISH]
/mob/living/carbon/proc/should_have_organ(var/organ_check)
return 0