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 @Override
protected void startUp() throws Exception 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 @Override
protected void shutDown() throws Exception 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) private void onGameStateChanged(GameStateChanged gameStateChanged)