modified: code/modules/mob/living/carbon/brain/brain.dm

modified:   code/modules/mob/living/silicon/ai/say.dm
	modified:   code/modules/mob/living/silicon/decoy/decoy.dm
	modified:   code/modules/mob/living/silicon/pai/say.dm
	modified:   code/modules/mob/living/silicon/robot/say.dm
	modified:   code/unused/hivebot/mainframe.dm
	modified:   code/unused/hivebot/say.dm
This commit is contained in:
Nerezza
2012-07-17 13:39:45 -05:00
parent 7873fd8683
commit 3ca01536fd
7 changed files with 14 additions and 0 deletions
@@ -28,6 +28,8 @@
return 1
if (istype(other, /mob/living/carbon/human))
return 1
if (istype(other, /mob/living/carbon/human/tajaran))
return 1
if (istype(other, /mob/living/carbon/metroid))
return 1
return ..()
@@ -8,6 +8,8 @@
/mob/living/silicon/ai/say_understands(var/other)
if (istype(other, /mob/living/carbon/human))
return 1
if (istype(other, /mob/living/carbon/human/tajaran))
return 1
if (istype(other, /mob/living/silicon/robot))
return 1
if (istype(other, /mob/living/silicon/decoy))
@@ -7,6 +7,8 @@
/mob/living/silicon/decoy/say_understands(var/other)
if (istype(other, /mob/living/carbon/human))
return 1
if (istype(other, /mob/living/carbon/human/tajaran))
return 1
if (istype(other, /mob/living/silicon/robot))
return 1
if (istype(other, /mob/living/silicon/ai))
@@ -11,6 +11,8 @@
return 1
if (istype(other, /mob/living/carbon/brain))
return 1
if (istype(other, /mob/living/carbon/human/tajaran))
return 1
return ..()
/mob/living/silicon/pai/say_quote(var/text)
@@ -5,6 +5,8 @@
return 1
if (istype(other, /mob/living/carbon/human))
return 1
if (istype(other, /mob/living/carbon/human/tajaran))
return 1
if (istype(other, /mob/living/carbon/brain))
return 1
if (istype(other, /mob/living/silicon/pai))