Hi all,
I am currently working on a mod that adds rpg-like skills to Minecraft using a Capability attached to EntityPlayer. Right now, the system works just fine on an Integrated Server, but upon attempting to launch it on a Dedicated Server, the line registering the capability encounters a NoClassDefFoundError:
https://github.com/archery2000/Mod/blob/master/Crashlog
Here is the part of my code that is probably related to the crash:
https://github.com/archery2000/Mod/blob/master/skills/core/SkillCapability.java
https://github.com/archery2000/Mod/blob/master/core/Main.java
https://github.com/archery2000/Mod/blob/master/core/CommonProxy.java
https://github.com/archery2000/Mod/blob/master/core/ServerProxy.java
https://github.com/archery2000/Mod/blob/master/core/ClientProxy.java
Would be so grateful if someone could point me in the right direction.
Thanks!
Edit: Thanks to Abastro, I figured out the source of the problem. By only injecting it in Common Proxy and referring to it from all my other files, the error is prevented.