mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Fix animals not inherently understanding silicons.
This commit is contained in:
@@ -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 ..()
|
||||
@@ -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 ..()
|
||||
Reference in New Issue
Block a user