fixed missing passthrough statement in choosepiecestate

This commit is contained in:
Hanno Fleischer
2024-12-11 12:28:48 +01:00
parent 574f8bb681
commit 42283f29a0

View File

@@ -109,6 +109,16 @@ public void received(EndOfTurnMessage msg) {
currentState.received(msg);
}
/**
* Receives the dice now message.
*
* @param msg the dice now message
*/
@Override
public void received(DiceNowMessage msg) {
currentState.received(msg);
}
/**
* Receives the move message.
*