From 2abe8f1ed6a7fbf8f4040dd0f97330012ee2c679 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 10 Mar 2022 21:38:39 -0800 Subject: [PATCH] Actually, no, just a minimum extend vote count --- code/controllers/subsystem/vote.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 9196c5f4a1..57d4a5f7cc 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -253,9 +253,9 @@ SUBSYSTEM_DEF(vote) calculate_highest_median(vote_title_text) var/list/winners = list() if(mode == "transfer") - var/greater_amount_required = 2 + transfer_votes_done - text += "\nExtending requires [greater_amount_required] more votes to win." - if(choices[VOTE_TRANSFER] + greater_amount_required >= choices[VOTE_CONTINUE]) + var/amount_required = 3 + transfer_votes_done + text += "\nExtending requires at least [amount_required] votes to win." + if(choices[VOTE_CONTINUE] < amount_required || choices[VOTE_TRANSFER] >= choices[VOTE_CONTINUE]) winners = list(VOTE_TRANSFER) else winners = list(VOTE_CONTINUE)