xtea: disable until we have our server back up. (#1455)

This commit is contained in:
Ganom
2019-08-25 19:32:10 -04:00
committed by Kyle
parent b885b0a3f8
commit 5c24dce1b3

View File

@@ -58,13 +58,15 @@ public class XteaPlugin extends Plugin
@Override
protected void startUp() throws Exception
{
eventBus.subscribe(GameStateChanged.class, this, this::onGameStateChanged);
//todo re-enable when we have our server back up.
/*eventBus.subscribe(GameStateChanged.class, this, this::onGameStateChanged);*/
}
@Override
protected void shutDown() throws Exception
{
eventBus.unregister(this);
//todo re-enable when we have our server back up.
/*eventBus.unregister(this);*/
}
private void onGameStateChanged(GameStateChanged gameStateChanged)