From 5b47ccec2e8d40a9a7a3157af783d3525c7b5fa0 Mon Sep 17 00:00:00 2001 From: izac Date: Fri, 1 Dec 2017 10:56:41 +0100 Subject: [PATCH] Correct for our change in the crew transfer Signed-off-by: izac --- code/controllers/autotransfer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/autotransfer.dm b/code/controllers/autotransfer.dm index bdb5c6d39c..0220df0506 100644 --- a/code/controllers/autotransfer.dm +++ b/code/controllers/autotransfer.dm @@ -18,7 +18,7 @@ datum/controller/transfer_controller/proc/process() currenttick = currenttick + 1 if (round_duration_in_ticks >= shift_last_vote - 2 MINUTES) //VOREStation Edit START shift_last_vote = 999999999999 //Setting to a stupidly high number since it'll be not used again. - world << "Warning: This upcoming extend vote will be your LAST extend vote. Wrap up your scenes in the next 60 minutes if the vote succeeds." //VOREStation Edit + world << "Warning: This upcoming extend vote will be your ONE and ONLY Transfer vote for the next ten hours. Wrap up your scenes if the vote succeeds." //VOREStation Edit if (round_duration_in_ticks >= shift_hard_end - 1 MINUTE) init_shift_change(null, 1) shift_hard_end = timerbuffer + config.vote_autotransfer_interval //If shuttle somehow gets recalled, let's force it to call again next time a vote would occur.