mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
Moved silicon/say_understands() to silicon/say.dm
This commit is contained in:
@@ -5,19 +5,6 @@
|
|||||||
//If there is a defined "parent" AI, it is actually an AI, and it is alive, anything the AI tries to say is said by the parent instead.
|
//If there is a defined "parent" AI, it is actually an AI, and it is alive, anything the AI tries to say is said by the parent instead.
|
||||||
..(message)
|
..(message)
|
||||||
|
|
||||||
/mob/living/silicon/say_understands(var/other,var/datum/language/speaking = null)
|
|
||||||
//These only pertain to common. Languages are handled by mob/say_understands()
|
|
||||||
if (!speaking)
|
|
||||||
if (istype(other, /mob/living/carbon/human))
|
|
||||||
return 1
|
|
||||||
if (istype(other, /mob/living/silicon))
|
|
||||||
return 1
|
|
||||||
if (istype(other, /mob/living/carbon/brain))
|
|
||||||
return 1
|
|
||||||
return ..()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// These Verbs are commented out since we've disabled the AI vocal (VOX) announcements.
|
// These Verbs are commented out since we've disabled the AI vocal (VOX) announcements.
|
||||||
// If you re-enable them there is 3 lines in ai.dm Topic() that you need to uncomment as well.
|
// If you re-enable them there is 3 lines in ai.dm Topic() that you need to uncomment as well.
|
||||||
// just search for VOX in there.
|
// just search for VOX in there.
|
||||||
|
|||||||
@@ -12,6 +12,17 @@
|
|||||||
#define IS_ROBOT 2
|
#define IS_ROBOT 2
|
||||||
#define IS_PAI 3
|
#define IS_PAI 3
|
||||||
|
|
||||||
|
/mob/living/silicon/say_understands(var/other,var/datum/language/speaking = null)
|
||||||
|
//These only pertain to common. Languages are handled by mob/say_understands()
|
||||||
|
if (!speaking)
|
||||||
|
if (istype(other, /mob/living/carbon/human))
|
||||||
|
return 1
|
||||||
|
if (istype(other, /mob/living/silicon))
|
||||||
|
return 1
|
||||||
|
if (istype(other, /mob/living/carbon/brain))
|
||||||
|
return 1
|
||||||
|
return ..()
|
||||||
|
|
||||||
/mob/living/silicon/say(var/message)
|
/mob/living/silicon/say(var/message)
|
||||||
if (!message)
|
if (!message)
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user