From 73f3ebddada318cd3e736d552469a0295a2a36fc Mon Sep 17 00:00:00 2001 From: AbsFree Date: Mon, 17 Mar 2025 11:28:59 +0100 Subject: [PATCH] makes it so that not transfering is the default vote result --- 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 934842c05e..f66cd785bc 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -256,7 +256,7 @@ SUBSYSTEM_DEF(vote) 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]) + if(choices[VOTE_CONTINUE] < amount_required || choices[VOTE_TRANSFER] > choices[VOTE_CONTINUE]) winners = list(VOTE_TRANSFER) else winners = list(VOTE_CONTINUE)