From 74f3b861447278e311e909fdacf099639cebef96 Mon Sep 17 00:00:00 2001 From: Yannik Bretschneider Date: Tue, 1 Jun 2021 15:26:09 +0200 Subject: [PATCH] error: added todo to currently wrong GameInstance constructor --- .../main/java/uulm/teamname/marvelous/server/lobby/Lobby.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/java/uulm/teamname/marvelous/server/lobby/Lobby.java b/Server/src/main/java/uulm/teamname/marvelous/server/lobby/Lobby.java index 8922cb6..ba577c9 100644 --- a/Server/src/main/java/uulm/teamname/marvelous/server/lobby/Lobby.java +++ b/Server/src/main/java/uulm/teamname/marvelous/server/lobby/Lobby.java @@ -29,7 +29,7 @@ public class Lobby extends EventObserver { this.gameID = gameID; this.connection = connection; - game = new GameInstance(mapSize); + game = new GameInstance(); //TODO: Add config objects here game.addObserver(this); this.pipeline = new Pipeline();