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)