Removed root from fxlm file, added constructor with no parameters to ChatController-> for some reason this gets called

now the window pops up, but it cant communicate
This commit is contained in:
Seraina
2022-04-17 10:55:58 +02:00
parent 4899f06f73
commit 4bd9038146
2 changed files with 6 additions and 6 deletions

View File

@@ -51,8 +51,10 @@ public class ChatController implements Initializable {
private static final String chatToAll = Protocol.chatMsgToAll;
private static final String chatToLobby = Protocol.chatMsgToLobby;
public ChatController() {
public ChatController() { //TODO: why does this get called
super();
whisperTargetChosen = new SimpleBooleanProperty();
cmd = "";
}
public ChatController(ClientModel client) {
this.client = client;