Handling for tie breaking
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-22 23:09:54 +02:00
parent 1709617e10
commit 742d0c772c
3 changed files with 6 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ public:
if (aSpeed != bSpeed)
return aSpeed > bSpeed;
return true;
return a->__GetRandomValue() > b->__GetRandomValue();
}
};