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
+3 -3
View File
@@ -550,10 +550,10 @@ var/list/admin_verbs_hideable = list(
var/message = input(usr, "What do you want the message to be?", "Make Sound") as text | null
if(!message)
return
var/templanguages = O.languages
O.languages |= ALL
var/templanguages = O.languages_spoken
O.languages_spoken |= ALL
O.say(message)
O.languages = templanguages
O.languages_spoken = templanguages
log_admin("[key_name(usr)] made [O] at [O.x], [O.y], [O.z] say \"[message]\"")
message_admins("<span class='adminnotice'>[key_name_admin(usr)] made [O] at [O.x], [O.y], [O.z]. say \"[message]\"</span>")
feedback_add_details("admin_verb","OS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!