diff --git a/java/squeek/applecore/asm/Hooks.java b/java/squeek/applecore/asm/Hooks.java index 2f94797..3502665 100644 --- a/java/squeek/applecore/asm/Hooks.java +++ b/java/squeek/applecore/asm/Hooks.java @@ -206,6 +206,11 @@ public static void fireAppleCoreFertilizeEvent(Block block, World world, int x, renamedFertilize.invoke(block, world, random, x, y, z); } } + catch (NoClassDefFoundError e) + { + // swallow this exception, as it can be triggered by @SideOnly annotation issues + // see https://github.com/squeek502/AppleCore/issues/48 + } catch (RuntimeException e) { throw e;