Browse Source

feat: call GameState::setupGameState() from initialise event handler

rdh-local-prototype-endturn
Rob Hallam 2 months ago
parent
commit
d123fa9810
1 changed files with 1 additions and 9 deletions
  1. +1
    -9
      app/events/Initalize.java

+ 1
- 9
app/events/Initalize.java View File

@@ -23,15 +23,7 @@ public class Initalize implements EventProcessor{
@Override
public void processEvent(ActorRef out, GameState gameState, JsonNode message) {
// hello this is a change
gameState.gameInitalised = true;
gameState.something = true;
// User 1 makes a change
//CommandDemo.executeDemo(out); // this executes the command demo, comment out this when implementing your solution
//Loaders_2024_Check.test(out);
gameState.setupGameState();
// start the turn demo
TurnDemo.executeDemo(out);


Loading…
Cancel
Save