From 16cad168a223db54adfe8e1aeca4a00f7fafe330 Mon Sep 17 00:00:00 2001 From: GunHog Date: Mon, 13 Jun 2016 16:06:17 -0500 Subject: [PATCH] Fixes bot speech Bots now always have their robot spans. --- code/modules/mob/living/simple_animal/bot/bot.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/bot.dm b/code/modules/mob/living/simple_animal/bot/bot.dm index 4cbd52fc410..46df22d7199 100644 --- a/code/modules/mob/living/simple_animal/bot/bot.dm +++ b/code/modules/mob/living/simple_animal/bot/bot.dm @@ -14,8 +14,10 @@ has_unlimited_silicon_privilege = 1 sentience_type = SENTIENCE_ARTIFICIAL status_flags = NONE //no default canpush - - speak_emote = list("states") + verb_say = "states" + verb_ask = "queries" + verb_exclaim = "declares" + verb_yell = "alarms" bubble_icon = "machine" faction = list("neutral", "silicon") @@ -335,7 +337,7 @@ if((!on) || (!message)) return if(channel && Radio.channels[channel])// Use radio if we have channel key - Radio.talk_into(src, message, channel) + Radio.talk_into(src, message, channel, get_spans()) else say(message) return