aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-05-07 21:11:09 +0200
committerLinnea Gräf <nea@nea.moe>2024-05-07 21:11:09 +0200
commit93e6e0ab16df0808ee7720202a32967eddcf5c10 (patch)
tree0939d44ec0c848f8712df8b03f30af1d34eabfa0 /src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt
parent8f3cc34740fcfe1572d23c8f1c1db1a309217b84 (diff)
downloadfirmament-93e6e0ab16df0808ee7720202a32967eddcf5c10.tar.gz
firmament-93e6e0ab16df0808ee7720202a32967eddcf5c10.tar.bz2
firmament-93e6e0ab16df0808ee7720202a32967eddcf5c10.zip
Fix up most of the remaining event handlers
[no changelog]
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)
}
}