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)