From a0958b260bbdc32361e62f459c5e39e522c3b94a Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Thu, 22 Mar 2018 19:51:32 -0700 Subject: [PATCH] Fix night shift admin override missing On option (#36612) --- code/modules/admin/secrets.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/secrets.dm b/code/modules/admin/secrets.dm index b8176a4ce78..5e18378c519 100644 --- a/code/modules/admin/secrets.dm +++ b/code/modules/admin/secrets.dm @@ -168,7 +168,7 @@ if("night_shift_set") if(!check_rights(R_ADMIN)) return - var/val = alert(usr, "What do you want to set night shift to? This will override the automatic system until set to automatic again.", "On", "Off", "Automatic") + var/val = alert(usr, "What do you want to set night shift to? This will override the automatic system until set to automatic again.", "Night Shift", "On", "Off", "Automatic") switch(val) if("Automatic") if(CONFIG_GET(flag/enable_night_shifts))