From 0d91a9de6d4a0134914d0a76d3688ea284f77df5 Mon Sep 17 00:00:00 2001 From: evilew Date: Mon, 2 Dec 2024 22:31:41 +0100 Subject: [PATCH] tweaked voting code - removed the whole mechanic where extending the round requires an increasing amount of people to vote (based on the amount of times the vote has appeared) --- code/controllers/subsystem/vote.dm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 42df2a6a80..02b1c4ae65 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -252,11 +252,8 @@ SUBSYSTEM_DEF(vote) if(vote_system == HIGHEST_MEDIAN_VOTING) calculate_highest_median(vote_title_text) var/list/winners = list() - if(mode == "transfer") - var/amount_required = 0 //GS13 edit - make it so rounds can last forever (previous variable value: 1 + transfer_votes_done) - transfer_votes_done += 1 - text += "\nExtending requires at least [amount_required] votes to win." - if(choices[VOTE_CONTINUE] < amount_required || choices[VOTE_TRANSFER] >= choices[VOTE_CONTINUE]) + if(mode == "transfer") //GS13 - removed a bit of code that made it so extending the round requires an incremental amount of votes to win + if(choices[VOTE_TRANSFER] >= choices[VOTE_CONTINUE]) winners = list(VOTE_TRANSFER) else winners = list(VOTE_CONTINUE)