how one = can make a difference

This commit is contained in:
Putnam
2019-12-21 11:34:41 -08:00
parent e38396e984
commit 7c1bd7f8a7

View File

@@ -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