It should have been all got the build 100% correct not all got the same score.

This commit is contained in:
Virizion 2015-11-18 16:10:44 -05:00
parent 8145b127ba
commit 76db2710ae

View File

@ -259,7 +259,7 @@ public class SpeedBuilder extends SoloGame
{
Player lowestPlayer = null;
int lowestScore = -1;
boolean allEqual = !_buildRecreations.isEmpty();
boolean allCorrect = !_buildRecreations.isEmpty();
for (RecreationData recreation : _buildRecreations.values())
{
@ -270,13 +270,13 @@ public class SpeedBuilder extends SoloGame
lowestScore = score;
}
if (score != lowestScore)
if (score != 125)
{
allEqual = false;
allCorrect = false;
}
}
if (lowestPlayer != null && !allEqual)
if (lowestPlayer != null && !allCorrect)
{
Manager.addSpectator(lowestPlayer, true);
GetTeamList().get(0).SetPlayerState(lowestPlayer, PlayerState.OUT);
@ -289,7 +289,7 @@ public class SpeedBuilder extends SoloGame
EndCheck();
}
if (allEqual)
if (allCorrect)
Announce(F.main("Build", "Everyone completed the build so nobody was eliminated!"));
_reviewState++;