mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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
21 lines
584 B
Plaintext
21 lines
584 B
Plaintext
/mob/living/silicon/hivebot/say_understands(var/other)
|
|
if (istype(other, /mob/living/silicon/ai))
|
|
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/silicon/robot))
|
|
return 1
|
|
return ..()
|
|
|
|
/mob/living/silicon/hivebot/say_quote(var/text)
|
|
var/ending = copytext(text, length(text))
|
|
|
|
if (ending == "?")
|
|
return "queries, \"[text]\"";
|
|
else if (ending == "!")
|
|
return "declares, \"[copytext(text, 1, length(text))]\"";
|
|
|
|
return "states, \"[text]\"";
|