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

This commit is contained in:
GinjaNinja32
2014-12-07 12:04:09 +00:00
parent 6a975a1e6a
commit 17597af7fc
3 changed files with 1 additions and 6 deletions
-1
View File
@@ -109,7 +109,6 @@ var/global/list/obj/cortical_stacks = list() //Stacks for 'leave nobody behind'
vox.add_language("Vox-pidgin")
vox.add_language("Galactic Common")
vox.add_language("Tradeband")
vox.add_language("Noise")
vox.h_style = "Short Vox Quills"
vox.f_style = "Shaved"
+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()
-4
View File
@@ -1,7 +1,3 @@
/mob/living/New()
..()
add_language("Noise")
//mob verbs are faster than object verbs. See mob/verb/examine.
/mob/living/verb/pulled(atom/movable/AM as mob|obj in oview(1))
set name = "Pull"