From 3bd6de943c422dda1a33b8eee46bab4007f7238e Mon Sep 17 00:00:00 2001 From: evilew Date: Tue, 10 Dec 2024 20:39:07 +0100 Subject: [PATCH] vote fix? - make it so if no one votes on round continuing, the station will carry on --- code/controllers/subsystem/vote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 7d81aec281..934842c05e 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -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 tweaked from 1 to 0 transfer_votes_done = 0 //gs13 tweaked from 1 to 0 (also removed it incrementing with each vote) text += "\nExtending requires at least [amount_required] votes to win." if(choices[VOTE_CONTINUE] < amount_required || choices[VOTE_TRANSFER] >= choices[VOTE_CONTINUE])