From 66a84104b691fb5f4b83f7f69bd879347b719fc3 Mon Sep 17 00:00:00 2001 From: walmartcheapo Date: Mon, 17 Aug 2015 00:57:04 -0500 Subject: [PATCH 1/3] Revert "Cryostorage Tweak" This reverts commit bd5cee945cfa2c0bf90c3135d4655096cf975a0d. --- code/game/machinery/cryopod.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 4fa9b50154c83..337d57df8d29e 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -180,7 +180,7 @@ var/mob/occupant = null // Person waiting to be despawned. var/orient_right = null // Flips the sprite. - var/time_till_despawn = 6000 // 10 minutes-ish safe period before being despawned. + var/time_till_despawn = 18000 // 30 minutes-ish safe period before being despawned. var/time_entered = 0 // Used to keep track of the safe period. var/obj/item/device/radio/intercom/announce // From f591220c0c74157d5dcea882fa7e69e137ab989f Mon Sep 17 00:00:00 2001 From: walmartcheapo Date: Mon, 17 Aug 2015 00:57:08 -0500 Subject: [PATCH 2/3] Revert "Revert "Cryostorage Tweak"" This reverts commit 66a84104b691fb5f4b83f7f69bd879347b719fc3. --- code/game/machinery/cryopod.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 337d57df8d29e..4fa9b50154c83 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -180,7 +180,7 @@ var/mob/occupant = null // Person waiting to be despawned. var/orient_right = null // Flips the sprite. - var/time_till_despawn = 18000 // 30 minutes-ish safe period before being despawned. + var/time_till_despawn = 6000 // 10 minutes-ish safe period before being despawned. var/time_entered = 0 // Used to keep track of the safe period. var/obj/item/device/radio/intercom/announce // From 2764ba1201b5e0eca79778625418ec771651b4bd Mon Sep 17 00:00:00 2001 From: walmartcheapo Date: Mon, 17 Aug 2015 01:22:20 -0500 Subject: [PATCH 3/3] Direct Narration/Subtle Messaging Formatting Fix Allows formatting of all sorts for Direct Narration and Subtle Messaging via the removal of Sanitize() on the functions. --- code/modules/admin/verbs/randomverbs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 4528dba3ba825..4cb7665fbfa83 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -52,7 +52,7 @@ src << "Only administrators may use this command." return - var/msg = sanitize(input("Message:", text("Subtle PM to [M.key]")) as text) + var/msg = input("Message:", text("Subtle PM to [M.key]")) as text) if (!msg) return @@ -109,7 +109,7 @@ src << "Only administrators may use this command." return - var/msg = sanitize(input("Message:", text("Enter the text you wish to appear to everyone:")) as text) + var/msg = input("Message:", text("Enter the text you wish to appear to everyone:")) as text) if (!msg) return @@ -132,7 +132,7 @@ if(!M) return - var/msg = sanitize(input("Message:", text("Enter the text you wish to appear to your target:")) as text) + var/msg = input("Message:", text("Enter the text you wish to appear to your target:")) as text) if( !msg ) return