From 6ff7a4c17605493a7e9bce6f2b679fa559033ea4 Mon Sep 17 00:00:00 2001 From: Rykka Stormheart Date: Mon, 27 Feb 2023 04:50:39 -0800 Subject: [PATCH] Adds clarity to Transfer Vote States in the vote question that transfer must exceed extend by 70% in order to transfer. Simple as that. --- code/controllers/subsystems/vote.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystems/vote.dm b/code/controllers/subsystems/vote.dm index 24f7e33d37..b2120fcd86 100644 --- a/code/controllers/subsystems/vote.dm +++ b/code/controllers/subsystems/vote.dm @@ -79,7 +79,7 @@ SUBSYSTEM_DEF(vote) if(transfer_votes / total_votes > 0.7) greatest_votes = transfer_votes . = list("Initiate Crew Transfer") - else + else greatest_votes = extend_votes . = list("Extend the Shift") else @@ -233,7 +233,7 @@ SUBSYSTEM_DEF(vote) if(ticker.current_state <= GAME_STATE_SETTING_UP) to_chat(initiator_key, "The crew transfer button has been disabled!") return 0 - question = "Your PDA beeps with a message from Central. Would you like an additional hour to finish ongoing projects?" //Yawn Wider Edit //CHOMP EDIT: Changed to 'one' hour. + question = "Your PDA beeps with a message from Central. Would you like an additional hour to finish ongoing projects? (OOC Notice: Transfer votes must exceed Extend votes by 70% to transfer.)" //Yawn Wider Edit //CHOMP EDIT: Changed to 'one' hour. Add notice stating transfer must exceed extend by 70%. choices.Add("Initiate Crew Transfer", "Extend the Shift") //VOREStation Edit if(VOTE_ADD_ANTAGONIST) if(!config.allow_extra_antags || ticker.current_state >= GAME_STATE_SETTING_UP)