fix: fixed building gamestate events (and the tests relating to that)

This commit is contained in:
2021-05-11 03:20:19 +02:00
parent bbcff5d94b
commit 4203092f9a
2 changed files with 4 additions and 0 deletions

View File

@ -269,7 +269,9 @@ public class EventBuilder {
gameStateEvent.type = this.type;
gameStateEvent.entities = this.entities;
gameStateEvent.turnOrder = this.turnOrder;
gameStateEvent.mapSize = this.mapSize;
gameStateEvent.activeCharacter = this.activeCharacter;
gameStateEvent.stoneCooldowns = this.stoneCooldowns;
gameStateEvent.winCondition = this.winCondition;
return gameStateEvent;
}