From 07a58aae1bdb090ef62dbfcc6a52c4e05d309610 Mon Sep 17 00:00:00 2001 From: AbsFree Date: Mon, 17 Mar 2025 11:30:50 +0100 Subject: [PATCH] added edit comments --- code/controllers/subsystem/vote.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index f66cd785bc..0def193f82 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -256,7 +256,10 @@ 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." + // GS13 EDIT + // if(choices[VOTE_CONTINUE] < amount_required || choices[VOTE_TRANSFER] >= choices[VOTE_CONTINUE]) if(choices[VOTE_CONTINUE] < amount_required || choices[VOTE_TRANSFER] > choices[VOTE_CONTINUE]) + // GS13 END EDIT winners = list(VOTE_TRANSFER) else winners = list(VOTE_CONTINUE)