From 94db7a2dc14105ef8abfc1cd1f14db3e65efcd58 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Fri, 16 Aug 2013 17:48:25 -0700 Subject: [PATCH] These files have been collapsed into root procs and can be deleted. --- code/modules/mob/living/carbon/metroid/say.dm | 21 ---------------- code/modules/mob/living/silicon/robot/say.dm | 24 ------------------- code/unused/hivebot/say.dm | 20 ---------------- 3 files changed, 65 deletions(-) delete mode 100644 code/modules/mob/living/carbon/metroid/say.dm delete mode 100644 code/modules/mob/living/silicon/robot/say.dm delete mode 100644 code/unused/hivebot/say.dm diff --git a/code/modules/mob/living/carbon/metroid/say.dm b/code/modules/mob/living/carbon/metroid/say.dm deleted file mode 100644 index 48bcde1705..0000000000 --- a/code/modules/mob/living/carbon/metroid/say.dm +++ /dev/null @@ -1,21 +0,0 @@ -/mob/living/carbon/slime/say(var/message) - if (silent) - return - else - return ..() - -/mob/living/carbon/slime/say_quote(var/text) - var/ending = copytext(text, length(text)) - - if (ending == "?") - return "telepathically asks, \"[text]\""; - else if (ending == "!") - return "telepathically cries, \"[text]\""; - - return "telepathically chirps, \"[text]\""; - -/mob/living/carbon/slime/say_understands(var/other) - if (istype(other, /mob/living/carbon/slime)) - return 1 - return ..() - diff --git a/code/modules/mob/living/silicon/robot/say.dm b/code/modules/mob/living/silicon/robot/say.dm deleted file mode 100644 index f71a96a9d9..0000000000 --- a/code/modules/mob/living/silicon/robot/say.dm +++ /dev/null @@ -1,24 +0,0 @@ -/mob/living/silicon/robot/say_understands(var/other) - if (istype(other, /mob/living/silicon/ai)) - return 1 - if (istype(other, /mob/living/silicon/decoy)) - return 1 - if (istype(other, /mob/living/carbon/human)) - return 1 - if (istype(other, /mob/living/carbon/brain)) - return 1 - if (istype(other, /mob/living/silicon/pai)) - return 1 -// if (istype(other, /mob/living/silicon/hivebot)) -// return 1 - return ..() - -/mob/living/silicon/robot/say_quote(var/text) - var/ending = copytext(text, length(text)) - - if (ending == "?") - return "queries, \"[text]\""; - else if (ending == "!") - return "declares, \"[text]\""; - - return "states, \"[text]\""; diff --git a/code/unused/hivebot/say.dm b/code/unused/hivebot/say.dm deleted file mode 100644 index 58ab72ef16..0000000000 --- a/code/unused/hivebot/say.dm +++ /dev/null @@ -1,20 +0,0 @@ -/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]\"";