voting doesn't require incremental wins
- changed it so amount required to pass a continuation votes doesn't increase with next votes
This commit is contained in:
@@ -253,7 +253,7 @@ SUBSYSTEM_DEF(vote)
|
||||
calculate_highest_median(vote_title_text)
|
||||
var/list/winners = list()
|
||||
if(mode == "transfer")
|
||||
var/amount_required = 1 + transfer_votes_done
|
||||
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])
|
||||
|
||||
Reference in New Issue
Block a user