Horizons 1.0.11 and Monster 1.0.6 server crashing - java.lang.ExceptionInInitializerError

ZizzyZizzy

New Member
Jul 29, 2019
4
0
0
Pastebin:
http://pastebin.com/rF7mspCG

Same error with both packs regarding the same DragonAPIMod.

Fresh install.

java version "1.7.0_25"
Java(TM) SE Runtime Environment (build 1.7.0_25-b15)
Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)
 

JamiePhonic

New Member
Jul 29, 2019
404
0
0
you are running an outdated version of java. the latest is 1.7.0_51
you issue seems to be with the DragonAPI
 

ZizzyZizzy

New Member
Jul 29, 2019
4
0
0
They release a new java version more often than most people change their underwear.

Yes, DragonAPI is indeed the problem, but these were both packaged server .zips that were downloaded from the FTB launcher. I'm sure it worked when they released the new version, the question is why is it now broken?
 

ZizzyZizzy

New Member
Jul 29, 2019
4
0
0
This is still broken in Monster 1.0.7. Same error, same DragonAPI complaining.

Fresh install, as in rm -rf, then unzip and start.

java version "1.7.0_51"
Java(TM) SE Runtime Environment (build 1.7.0_51-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)
 

Reika

RotaryCraft Dev
FTB Mod Dev
Sep 3, 2013
5,079
5,331
550
Toronto, Canada
sites.google.com

MCPC is deleting a vanilla function that DragonAPI relies on. I have contacted them and they claim to have fixed it. Update your copy.

EDIT:
In the future, the log should be a little more descriptive:
Code:
	public VanillaIntegrityException(String methodName, Class src, Class... argTypes) {
		message.append("A function was deleted from forge/vanilla!\n");
		message.append("Could not find "+methodName+"("+Arrays.toString(argTypes)+" in class "+src.getCanonicalName()+"\n");
		message.append("If you are using MCPC, try to replicate the crash in SSP!\n");
		message.append("If the crash does not occur there, you must fix your copy of MCPC.\n");
		message.append("One or more of the DragonAPI mods rely on this function.\n");
		this.crash();
	}
 
Last edited:
  • Like
Reactions: Eyamaz