From 0a4d79e54fdbd30271f4a24a73aded73077a4c19 Mon Sep 17 00:00:00 2001 From: Ispil Date: Mon, 12 Nov 2012 20:39:42 -0700 Subject: [PATCH 1/2] Fix to Tajaran/Skrell/Soghun not mrowling/warbling/hissing, respectively. --- code/modules/mob/living/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 2af9743d0ba..f56c672da84 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -372,7 +372,7 @@ var/list/department_radio_keys = list( var/rendered = null if (length(heard_a)) - var/message_a = say_quote(message) + var/message_a = say_quote(message,is_speaking_soghun,is_speaking_skrell,is_speaking_taj) if (italics) message_a = "[message_a]" From 8814647be52a47cb47610848a5190af8c6d5df51 Mon Sep 17 00:00:00 2001 From: Ispil Date: Mon, 12 Nov 2012 21:15:26 -0700 Subject: [PATCH 2/2] Fix to AIs and Cyborgs being able to "fall asleep" when they log off, but not being able to wake up when they return. They should no longer fall asleep. --- code/modules/mob/living/silicon/silicon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 6780d1cffe2..8ef637cd5f6 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -6,7 +6,7 @@ var/datum/ai_laws/laws = null//Now... THEY ALL CAN ALL HAVE LAWS var/list/alarms_to_show = list() var/list/alarms_to_clear = list() - + immune_to_ssd = 1 var/list/alarm_types_show = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) var/list/alarm_types_clear = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0)