fixed bugs inside of the client state machine and the message UpdateTSK

This commit is contained in:
Hanno Fleischer
2024-11-26 20:31:16 +01:00
parent 84c289cfd1
commit 621bb9efae
3 changed files with 21 additions and 1 deletions

View File

@@ -6,4 +6,14 @@ public class Ceremony extends ClientState {
public Ceremony(ClientState parent, ClientGameLogic logic) { public Ceremony(ClientState parent, ClientGameLogic logic) {
super(parent, logic); super(parent, logic);
} }
@Override
public void enter() {
}
@Override
public void exit() {
}
} }

View File

@@ -5,4 +5,14 @@ public class Settings extends ClientState {
public Settings(ClientState parent, ClientGameLogic logic) { public Settings(ClientState parent, ClientGameLogic logic) {
super(parent, logic); super(parent, logic);
} }
@Override
public void enter() {
}
@Override
public void exit() {
}
} }

View File

@@ -34,7 +34,7 @@ public UpdateTSK(int id, Color color) {
* Default constructor for serialization purposes. * Default constructor for serialization purposes.
*/ */
private UpdateTSK() { private UpdateTSK() {
this("", null); this(0, null);
} }
/** /**