From 11f0b1ef9283d4272126dccc51745aeef2422898 Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Sun, 3 Nov 2013 13:31:54 -0800 Subject: [PATCH] Fixed delay so anyone with R_SERVER can use it. --- code/modules/admin/admin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 056ad2d9326..e2bf6f7be2e 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -806,7 +806,7 @@ var/global/floorIsLava = 0 set desc="Delay the game start/end" set name="Delay" - if(!check_rights(R_ADMIN)) return + if(!check_rights(R_SERVER)) return if (!ticker || ticker.current_state != GAME_STATE_PREGAME) ticker.delay_end = !ticker.delay_end log_admin("[key_name(usr)] [ticker.delay_end ? "delayed the round end" : "has made the round end normally"].")