From ddcfe11780f4230ae453bb541ad5654c45adef90 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 24 Mar 2025 23:33:52 +0700 Subject: [PATCH] Caused by: java.lang.NoClassDefFoundError: ru/dbotthepony/mc/otm/android/feature/LimbOverclockingFeature --- src/main/resources/coremods/limb_brush_overclock.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/coremods/limb_brush_overclock.js b/src/main/resources/coremods/limb_brush_overclock.js index 88e51b8e4..5a2034769 100644 --- a/src/main/resources/coremods/limb_brush_overclock.js +++ b/src/main/resources/coremods/limb_brush_overclock.js @@ -18,7 +18,7 @@ function initializeCoreMod() { if (insn.getOpcode() == Opcodes.BIPUSH) { node.instructions.insert(insn, new MethodInsnNode( Opcodes.INVOKESTATIC, - 'ru/dbotthepony/mc/otm/android/feature/LimbOverclockingFeature', + 'ru/dbotthepony/mc/otm/player/android/feature/LimbOverclockingFeature', 'getBrushCooldown', '(Lnet/minecraft/world/entity/LivingEntity;)I' )) @@ -31,7 +31,7 @@ function initializeCoreMod() { if (insn.getOpcode() == Opcodes.ICONST_5) { node.instructions.insert(insn, new MethodInsnNode( Opcodes.INVOKESTATIC, - 'ru/dbotthepony/mc/otm/android/feature/LimbOverclockingFeature', + 'ru/dbotthepony/mc/otm/player/android/feature/LimbOverclockingFeature', 'getBrushTick', '(Lnet/minecraft/world/entity/LivingEntity;)I' )) @@ -59,7 +59,7 @@ function initializeCoreMod() { if (insn.getOpcode() == Opcodes.LDC && insn.cst == 10) { node.instructions.insert(insn, new MethodInsnNode( Opcodes.INVOKESTATIC, - 'ru/dbotthepony/mc/otm/android/feature/LimbOverclockingFeature', + 'ru/dbotthepony/mc/otm/player/android/feature/LimbOverclockingFeature', 'getBrushableBlockCooldown', '(Lnet/minecraft/world/entity/player/Player;)J' ))