added that when the client is in the game state and recieves the ceremony message it always changes to ceremony state

This commit is contained in:
Fleischer Hanno
2024-12-02 23:08:56 +01:00
parent 516848a67e
commit 4e6a272e7a

View File

@@ -192,7 +192,8 @@ public void received(MoveMessage msg){
*/ */
@Override @Override
public void received(CeremonyMessage msg){ public void received(CeremonyMessage msg){
state.received(msg); logic.addNotification(createCeremonyNotification());
logic.setState(logic.getCeremony());
} }
/** /**