Hi 👋
I have a question about listeners and arraylists in it. In my class https://github.com/Adreez/EventManager/blob/main/src/main/java/sk/adr3ez/eventmanager/managers/GameCreateManager.java I have a condition on line 46 if (playersInSetup.contains(p)) {
What i found is that array is not updated, i tried to send array contents in chat after setup() and also after that listener and the contents that i added in setup() aren't in listener method.
Does somebody know why?