From e12469aed9bd6841dbd6b72be041e072d71c985f Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Thu, 29 Dec 2011 10:23:00 -0700 Subject: [PATCH] Quick fix, and a fix for whispering. Signed-off-by: SkyMarshal --- baystation12.dme | 1 + code/defines/mob/living/carbon/carbon.dm | 1 + code/modules/mob/living/say.dm | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/baystation12.dme b/baystation12.dme index 0790915ec24..1cc62f3e5e6 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -144,6 +144,7 @@ #define FILE_DIR "code/WorkInProgress/SkyMarshal" #define FILE_DIR "code/WorkInProgress/Tastyfish" #define FILE_DIR "code/WorkInProgress/virus2" +#define FILE_DIR "code/WorkInProgress/Wrongnumber" #define FILE_DIR "html" #define FILE_DIR "icons" #define FILE_DIR "icons/effects" diff --git a/code/defines/mob/living/carbon/carbon.dm b/code/defines/mob/living/carbon/carbon.dm index b34ef524275..3e8250b4b33 100644 --- a/code/defines/mob/living/carbon/carbon.dm +++ b/code/defines/mob/living/carbon/carbon.dm @@ -5,6 +5,7 @@ var/brain_op_stage = 0.0 var/eye_op_stage = 0.0 var/appendix_op_stage = 0.0 + var/embryo_op_stage = 0.0 var/datum/disease2/disease/virus2 = null var/list/datum/disease2/disease/resistances2 = list() diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index a760f4dfea4..29f19dd41e2 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -221,7 +221,7 @@ //I see no reason to restrict such way of whispering if ("whisper") - whisper(copytext(message_old, 3)) + whisper(trim(copytext(message_old, 3))) return if ("binary")