Skip to content

Instantly share code, notes, and snippets.

@ft975
Last active December 18, 2015 01:19
Show Gist options
  • Save ft975/5702877 to your computer and use it in GitHub Desktop.
Save ft975/5702877 to your computer and use it in GitHub Desktop.
/* Initiate the blocks */
try {
Method m = NewModBlock.class.getDeclaredMethod("init",
new Class[] { FMLInitializationEvent.class });
m.setAccessible(true);
m.invoke(null, (Object) evnt);
} catch (IllegalAccessException | IllegalArgumentException
| InvocationTargetException | NoSuchMethodException
| SecurityException e) {
e.printStackTrace();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment