aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt')
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt b/src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt
index 9102497..b1f66c1 100644
--- a/src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt
+++ b/src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt
@@ -28,23 +28,12 @@ object DianaWaypoints : FirmamentFeature {
}
override fun onLoad() {
- ParticleSpawnEvent.subscribe(NearbyBurrowsSolver::onParticles)
- WorldReadyEvent.subscribe(NearbyBurrowsSolver::onSwapWorld)
- WorldRenderLastEvent.subscribe(NearbyBurrowsSolver::onRender)
UseBlockEvent.subscribe {
NearbyBurrowsSolver.onBlockClick(it.hitResult.blockPos)
}
AttackBlockEvent.subscribe {
NearbyBurrowsSolver.onBlockClick(it.blockPos)
}
- ProcessChatEvent.subscribe(NearbyBurrowsSolver::onChatEvent)
-
-
- WorldKeyboardEvent.subscribe(AncestralSpadeSolver::onKeyBind)
- ParticleSpawnEvent.subscribe(AncestralSpadeSolver::onParticleSpawn)
- SoundReceiveEvent.subscribe(AncestralSpadeSolver::onPlaySound)
- WorldRenderLastEvent.subscribe(AncestralSpadeSolver::onWorldRender)
- WorldReadyEvent.subscribe(AncestralSpadeSolver::onSwapWorld)
}
}