From 99b6c9ad0a48a6bf83cd55622526153f73ea67d0 Mon Sep 17 00:00:00 2001 From: Dahlular <55758850+Dahlular@users.noreply.github.com> Date: Mon, 22 Mar 2021 11:15:31 -0600 Subject: [PATCH] Revert "idk what to call this" --- code/controllers/subsystem/vote.dm | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index d6673894..df5ea45d 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -149,14 +149,9 @@ SUBSYSTEM_DEF(vote) if("5") v += winners[option] //Add the number votes to the pool numbers += (winners[option]*5) //Add the value of the vote to numbers - if(v < DYNAMIC_VOTE_NORMALIZATION) - while (v < DYNAMIC_VOTE_NORMALIZATION) //For low low pop, low vote rounds. - numbers += DYNAMIC_DEFAULT_CHAOS //stops the one person voting from setting the chaos to five and flooding the station with anomalies - v += 1 - else if (voted.len < GLOB.clients.len) //Have non-voters "vote" 2, if we're not lowpop - for(var/I in 1 to (GLOB.clients.len - voted.len)) - v += 1 - numbers += 2 + while (v < DYNAMIC_VOTE_NORMALIZATION) //For low low pop, low vote rounds. + numbers += DYNAMIC_DEFAULT_CHAOS //stops the one person voting from setting the chaos to five and flooding the station with anomalies + v += 1 var/total = 0 for (var/i in numbers) total += i