From 879659d5fd5ed42ad39471967c11cb8287724d77 Mon Sep 17 00:00:00 2001 From: Heroman Date: Mon, 8 Apr 2019 16:34:59 +1000 Subject: [PATCH] Lowers respawn timer back to 1 minute --- code/modules/mob/mob.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index a6965a7f166..d13533a758d 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -373,8 +373,8 @@ var/deathtimeseconds = round((deathtime - deathtimeminutes * 600) / 10,1) to_chat(usr, "You have been dead for[pluralcheck] [deathtimeseconds] seconds.") - if ((deathtime < (5 * 600)) && (ticker && ticker.current_state > GAME_STATE_PREGAME)) - to_chat(usr, "You must wait 5 minutes to respawn!") + if ((deathtime < (1 * 600)) && (ticker && ticker.current_state > GAME_STATE_PREGAME)) //VOREStation Edit: lower respawn timer + to_chat(usr, "You must wait 1 minute to respawn!") return else to_chat(usr, "You can respawn now, enjoy your new life!") @@ -716,7 +716,7 @@ if(statpanel("Tickets")) GLOB.ahelp_tickets.stat_entry() - + if(length(GLOB.sdql2_queries)) if(statpanel("SDQL2"))