From 7c1bd7f8a7df4f7e4f5a5064ecfd265b0be3bf34 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sat, 21 Dec 2019 11:34:41 -0800 Subject: [PATCH] how one = can make a difference --- 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 a2ce6f42fe..5a9b8ac84e 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -126,7 +126,7 @@ SUBSYSTEM_DEF(vote) //one last pass, now that we've done the math for(var/i in 1 to choices.len) for(var/j in 1 to choices.len) - if(i != j && p[i][j] > p[j][i]) + if(i != j && p[i][j] >= p[j][i]) choices[choices[i]]++ // choices[choices[i]] is the schulze ranking, here, rather than raw vote numbers