Fix mining plugin not showing

GameTick event was missing from subscriptions
This commit is contained in:
Rune-King
2019-07-26 13:14:40 +10:00
committed by GitHub
parent 8233e82374
commit c89e9541ff

View File

@@ -150,6 +150,7 @@ public class MiningPlugin extends Plugin
eventBus.subscribe(WallObjectSpawned.class, this, this::onWallObjectSpawned);
eventBus.subscribe(MenuOptionClicked.class, this, this::onMenuOptionClicked);
eventBus.subscribe(ChatMessage.class, this, this::onChatMessage);
eventBus.subscribe(GameTick.class, this, this::onGameTick);
}
@Provides