Updated 'AnimationState' class.

Updated the 'AnimationState' class by adding a missing semicolon.
This commit is contained in:
Daniel Grigencha
2024-12-06 03:27:55 +01:00
parent 620063e894
commit 39ed4238b5

View File

@@ -53,7 +53,7 @@ public void exit() {
*/
@Override
public void received(AnimationEndMessage msg, int from) {
this.messageReceived.put(from, true)
this.messageReceived.put(from, true);
if (this.messageReceived.size() == this.logic.getGame().getPlayers().size()) {
this.logic.getServerSender().send(this.logic.getGame().getActivePlayerId(), new DiceNowMessage());
this.gameAutomaton.setCurrentState(this.gameAutomaton.getTurnState());