Fix error in notification syncronizer

This commit is contained in:
Felix Koppe
2024-12-11 08:40:31 +01:00
parent aa44b84648
commit f8a021b310

View File

@@ -156,7 +156,10 @@ private void handleGame(Notification notification) {
int v5 = ceremonyNotification.getNodesMoved().get(i);
int v6 = ceremonyNotification.getBonusNodes().get(i);
ceremonyView.addCeremonyParticipant(color, i, name);
if(i < size - 1) {
ceremonyView.addCeremonyParticipant(color, i + 1, name);
}
ceremonyView.addStatisticsRow(name, v1, v2, v3, v4, v5, v6);
}
} else if (notification instanceof DiceNowNotification) {