Splits languages into languages_spoken and languages_understood.

This commit is contained in:
unknown
2016-06-16 18:50:32 -04:00
parent e603310120
commit a0c866967f
32 changed files with 82 additions and 63 deletions
+2 -2
View File
@@ -518,13 +518,13 @@ var/list/non_fakeattack_weapons = list(/obj/item/weapon/gun/projectile, /obj/ite
person = H
people += H
if(person) //Basic talk
target << target.compose_message(person,person.languages,pick(speak_messages),null,person.get_spans())
target << target.compose_message(person,person.languages_understood,pick(speak_messages),null,person.get_spans())
else // Radio talk
var/list/humans = list()
for(var/mob/living/carbon/human/H in living_mob_list)
humans += H
person = pick(humans)
target << target.compose_message(person,person.languages,pick(radio_messages),"1459",person.get_spans())
target << target.compose_message(person,person.languages_understood,pick(radio_messages),"1459",person.get_spans())
qdel(src)
/obj/effect/hallucination/message