We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734ac8c commit d7c9c76Copy full SHA for d7c9c76
src/main/kotlin/com/lambda/client/LambdaMod.kt
@@ -63,6 +63,11 @@ class LambdaMod {
63
fun init(event: FMLInitializationEvent) {
64
LOG.info("Initializing $NAME $VERSION")
65
66
+ // load this class so that baritone doesn't crash
67
+ // see https://github.com/cabaletta/baritone/issues/3859
68
+ @Suppress("UNUSED_VARIABLE")
69
+ val baritoneTroll = baritone.api.utils.BetterBlockPos::class.java
70
+
71
LoaderWrapper.loadAll()
72
73
MinecraftForge.EVENT_BUS.register(ForgeEventProcessor)
0 commit comments