Fix animals not inherently understanding silicons.

This commit is contained in:
D3athrow
2015-05-09 11:09:51 -05:00
parent b502a5349f
commit 71c84bd496
2 changed files with 13 additions and 2 deletions

View File

@@ -1,2 +1,8 @@
/mob/living/carbon/monkey/say_quote(var/text)
return "chimpers, \"[text]\"";
/mob/living/carbon/monkey/say_understands(var/mob/other,var/datum/language/speaking = null)
if(issilicon(other))
return 1
return ..()

View File

@@ -594,3 +594,8 @@
return
gib()
return
/mob/living/simple_animal/say_understands(var/mob/other,var/datum/language/speaking = null)
if(issilicon(other))
return 1
return ..()