Better handling of language list, mobs no longer require noise-language in their list

This commit is contained in:
GinjaNinja32
2014-12-07 12:09:29 +00:00
parent 6a975a1e6a
commit 17597af7fc
3 changed files with 1 additions and 6 deletions
+1 -1
View File
@@ -305,7 +305,7 @@
// Can we speak this language, as opposed to just understanding it?
/mob/proc/can_speak(datum/language/speaking)
return (universal_speak || speaking in src.languages)
return (universal_speak || (speaking.flags & INNATE) || speaking in src.languages)
//TBD
/mob/verb/check_languages()