From dc65bfdb8db8602d9e992fe9c961d453f4fee691 Mon Sep 17 00:00:00 2001 From: swankcookie Date: Thu, 24 Nov 2016 15:09:47 -0600 Subject: [PATCH] Adds confirmation message to Latespawn toggle and adds shutter to south bar window (#21692) * Adds confirmation message to Latespawn toggle * Adds a shutter in south bar window --- _maps/map_files/TgStation/tgstation.2.1.3.dmm | 2 +- code/modules/admin/verbs/randomverbs.dm | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/_maps/map_files/TgStation/tgstation.2.1.3.dmm b/_maps/map_files/TgStation/tgstation.2.1.3.dmm index 11f00992232..ad20d8bb7be 100644 --- a/_maps/map_files/TgStation/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation/tgstation.2.1.3.dmm @@ -95775,7 +95775,7 @@ aQc aRx aQc aQc -aOK +aQg aYV aYV bes diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index f006859dce3..8a2612c7d56 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -777,6 +777,9 @@ Traitors and the like can also be revived with the previous role mostly intact. if(!check_rights(R_DEBUG)) return + var/confirm = alert(src, "Disable Latejoin spawns??", "Message", "Yes", "No") + if(confirm != "Yes") + return latejoin.Cut()