diff --git a/cicaprojekt/Game.java b/cicaprojekt/Game.java index 14943bc..f4bd744 100644 --- a/cicaprojekt/Game.java +++ b/cicaprojekt/Game.java @@ -18,6 +18,7 @@ public class Game { public Game() { dungeon = new Dungeon(); random = new Random(); + flowoftime = new FlowOfTime(); } public void allZPMsCollected() { @@ -31,6 +32,8 @@ public class Game { oneill = new Player("O'Neill", players.get("oneill"), getRandomDirection()); jaffa = new Player("Jaffa", players.get("jaffa"), getRandomDirection()); replicator = new PlayerBase("Replicator", players.get("replicator"), getRandomDirection()); + + flowoftime.start(); } private Direction getRandomDirection() {