merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
254 changed files with 13293 additions and 2399 deletions
Showing only changes of commit ee94d901f4 - Show all commits

View File

@@ -56,7 +56,7 @@ public void setState(GameStates newState){
if(this.state != null){
this.state.exit();
}
System.out.println("jetziger State:"+this.state + " new State:"+newState);
System.out.println("CLIENT STATE old:" + this.state + " new:" + newState);
newState.enter();
state = newState;
}

View File

@@ -207,6 +207,8 @@ public CeremonyState getCeremonyState() {
* @param state as the new currentState attribute as a ServerState object.
*/
public void setCurrentState(ServerState state) {
System.out.println("SERVER STATE old:" + this.currentState + " new:" + state);
if (this.currentState != null) {
this.currentState.exit();
}