makes it so that not transfering is the default vote result

This commit is contained in:
AbsFree
2025-03-17 11:28:59 +01:00
parent 0438602679
commit 73f3ebddad
+1 -1
View File
@@ -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)