merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
255 changed files with 13431 additions and 2473 deletions
Showing only changes of commit b61b8214fe - Show all commits

View File

@@ -60,16 +60,14 @@ public Color next(Game game) {
colorsInGame.add(p.getColor());
}
int current = -1;
for(int i = 0; i < colorsInGame.size(); i++) {
Color c = colorsInGame.get(i);
int current = game.getActiveColor().ordinal();
if(c.equals(game.getActiveColor())) {
current = i;
}
int next = current + 1;
while (!colorsInGame.contains(Color.values()[next])) {
next++;
}
return colorsInGame.get((current + 1) % colorsInGame.size());
return Color.values()[next];
}
/**