Jump to content

Mod only working in MCP/Eclipse


Tynarus

Recommended Posts

Title says it all. My mod seems to only work in eclipse as of 1.5.1, when I've had no problems with it in the past. Here's the error log:

 

 

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader]

mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized

FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized

Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized

infection [The Infection] (tynarus.zip) Unloaded->Constructed->Pre-initialized->Errored

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader] Caught exception from infection

java.lang.NoClassDefFoundError: tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

at tynarus.theinfectionmod.core.handlers.EntityHandler.registerRenderingHandlers(EntityHandler.java:74)

at tynarus.theinfectionmod.core.proxy.ClientProxy.registerRenderers(ClientProxy.java:18)

at tynarus.theinfectionmod.Infection.load(Infection.java:54)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

at cpw.mods.fml.common.Loader.initializeMods(Loader.java:689)

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:444)

at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

at net.minecraft.client.Minecraft.run(Minecraft.java:729)

at java.lang.Thread.run(Unknown Source)

Caused by: java.lang.ClassNotFoundException: tynarus.theinfectionmod.world.entity.infected.villager.EntityInfectedVillager

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:211)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

... 34 more

Caused by: java.lang.ClassFormatError: Duplicate method name&signature in class file tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

at java.lang.ClassLoader.defineClass1(Native Method)

at java.lang.ClassLoader.defineClass(Unknown Source)

at java.security.SecureClassLoader.defineClass(Unknown Source)

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:200)

... 36 more

2013-03-31 01:39:00 [iNFO] [sTDERR] cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)

2013-03-31 01:39:00 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:444)

2013-03-31 01:39:00 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

2013-03-31 01:39:00 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:729)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at tynarus.theinfectionmod.core.handlers.EntityHandler.registerRenderingHandlers(EntityHandler.java:74)

2013-03-31 01:39:00 [iNFO] [sTDERR] at tynarus.theinfectionmod.core.proxy.ClientProxy.registerRenderers(ClientProxy.java:18)

2013-03-31 01:39:00 [iNFO] [sTDERR] at tynarus.theinfectionmod.Infection.load(Infection.java:54)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:689)

2013-03-31 01:39:00 [iNFO] [sTDERR] ... 5 more

2013-03-31 01:39:00 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: tynarus.theinfectionmod.world.entity.infected.villager.EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:211)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] ... 34 more

2013-03-31 01:39:00 [iNFO] [sTDERR] Caused by: java.lang.ClassFormatError: Duplicate method name&signature in class file tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.defineClass1(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.defineClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.security.SecureClassLoader.defineClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:200)

2013-03-31 01:39:00 [iNFO] [sTDERR] ... 36 more

 

 

 

Yes, EntityInfectedVillager is there and in the correct place. Works fine in eclipse, but suddenly not when I actually go to install it anymore. Worked fine on my last update, though that was 1.4.6. Can anyone throw me a lifeline? Thanks.  :P

Link to comment
Share on other sites

Both of You seem to have the same problem, and the solution is luckily the same. It's a matter of folder structure in Your zip file. It may be too deep or to shallow. If You have your mod code in for example src\minecraft\modPackage\modSubPackage and Your zip contains only modSubpackage, it has to fail. Try changing unpacking Your zip, putting it into proper folder and zipping it again. Or, if it's the opposite matter, unpack it, omit one folder level and pack it again.

 

Lots of people have this problem. I hope this helps.

Link to comment
Share on other sites

Both of You seem to have the same problem, and the solution is luckily the same. It's a matter of folder structure in Your zip file. It may be too deep or to shallow. If You have your mod code in for example src\minecraft\modPackage\modSubPackage and Your zip contains only modSubpackage, it has to fail. Try changing unpacking Your zip, putting it into proper folder and zipping it again. Or, if it's the opposite matter, unpack it, omit one folder level and pack it again.

 

Lots of people have this problem. I hope this helps.

 

My folder structure is just fine, though I appreciate the input. :)

 

My packaging goes "tynarus.theinfectionmod.*" with the folder structure inside my ZIP file being "tynarus/theinfectionmod/*", so I believe that to be correct. Had been for my other revisions anyways.

Link to comment
Share on other sites

Both of You seem to have the same problem, and the solution is luckily the same. It's a matter of folder structure in Your zip file. It may be too deep or to shallow. If You have your mod code in for example src\minecraft\modPackage\modSubPackage and Your zip contains only modSubpackage, it has to fail. Try changing unpacking Your zip, putting it into proper folder and zipping it again. Or, if it's the opposite matter, unpack it, omit one folder level and pack it again.

 

Lots of people have this problem. I hope this helps.

My folder structure is just fine, though I appreciate the input. :)

 

My packaging goes "tynarus.theinfectionmod.*" with the folder structure inside my ZIP file being "tynarus/theinfectionmod/*", so I believe that to be correct. Had been for my other revisions anyways.

 

I see alot of different errors. For example: "class format exception" you might have a duplicate class. Also, are you using Eclipse or notepad ++?

Link to comment
Share on other sites

Both of You seem to have the same problem, and the solution is luckily the same. It's a matter of folder structure in Your zip file. It may be too deep or to shallow. If You have your mod code in for example src\minecraft\modPackage\modSubPackage and Your zip contains only modSubpackage, it has to fail. Try changing unpacking Your zip, putting it into proper folder and zipping it again. Or, if it's the opposite matter, unpack it, omit one folder level and pack it again.

 

Lots of people have this problem. I hope this helps.

My folder structure is just fine, though I appreciate the input. :)

 

My packaging goes "tynarus.theinfectionmod.*" with the folder structure inside my ZIP file being "tynarus/theinfectionmod/*", so I believe that to be correct. Had been for my other revisions anyways.

 

I see alot of different errors. For example: "class format exception" you might have a duplicate class. Also, are you using Eclipse or notepad ++?

 

I've looked through everything and haven't seen any duplicates, I read over the errors for awhile and looked at everything for quite awhile as well and didn't come across anything I found as problematic sadly. :(

 

I'm using eclipse, and it works just fine there.

Link to comment
Share on other sites

Title says it all. My mod seems to only work in eclipse as of 1.5.1, when I've had no problems with it in the past. Here's the error log:

 

 

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader]

mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized

FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized

Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized

infection [The Infection] (tynarus.zip) Unloaded->Constructed->Pre-initialized->Errored

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

2013-03-31 01:38:50 [sEVERE] [ForgeModLoader] Caught exception from infection

java.lang.NoClassDefFoundError: tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

at tynarus.theinfectionmod.core.handlers.EntityHandler.registerRenderingHandlers(EntityHandler.java:74)

at tynarus.theinfectionmod.core.proxy.ClientProxy.registerRenderers(ClientProxy.java:18)

at tynarus.theinfectionmod.Infection.load(Infection.java:54)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

at cpw.mods.fml.common.Loader.initializeMods(Loader.java:689)

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:444)

at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

at net.minecraft.client.Minecraft.run(Minecraft.java:729)

at java.lang.Thread.run(Unknown Source)

Caused by: java.lang.ClassNotFoundException: tynarus.theinfectionmod.world.entity.infected.villager.EntityInfectedVillager

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:211)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

... 34 more

Caused by: java.lang.ClassFormatError: Duplicate method name&signature in class file tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

at java.lang.ClassLoader.defineClass1(Native Method)

at java.lang.ClassLoader.defineClass(Unknown Source)

at java.security.SecureClassLoader.defineClass(Unknown Source)

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:200)

... 36 more

2013-03-31 01:39:00 [iNFO] [sTDERR] cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)

2013-03-31 01:39:00 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:444)

2013-03-31 01:39:00 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

2013-03-31 01:39:00 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:729)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at tynarus.theinfectionmod.core.handlers.EntityHandler.registerRenderingHandlers(EntityHandler.java:74)

2013-03-31 01:39:00 [iNFO] [sTDERR] at tynarus.theinfectionmod.core.proxy.ClientProxy.registerRenderers(ClientProxy.java:18)

2013-03-31 01:39:00 [iNFO] [sTDERR] at tynarus.theinfectionmod.Infection.load(Infection.java:54)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:515)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-03-31 01:39:00 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:689)

2013-03-31 01:39:00 [iNFO] [sTDERR] ... 5 more

2013-03-31 01:39:00 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: tynarus.theinfectionmod.world.entity.infected.villager.EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:211)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] ... 34 more

2013-03-31 01:39:00 [iNFO] [sTDERR] Caused by: java.lang.ClassFormatError: Duplicate method name&signature in class file tynarus/theinfectionmod/world/entity/infected/villager/EntityInfectedVillager

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.defineClass1(Native Method)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.lang.ClassLoader.defineClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at java.security.SecureClassLoader.defineClass(Unknown Source)

2013-03-31 01:39:00 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:200)

2013-03-31 01:39:00 [iNFO] [sTDERR] ... 36 more

 

 

 

Yes, EntityInfectedVillager is there and in the correct place. Works fine in eclipse, but suddenly not when I actually go to install it anymore. Worked fine on my last update, though that was 1.4.6. Can anyone throw me a lifeline? Thanks.  :P

Post a copy of your pre-reobfusicate'd class files and your post-rebfusicated class files. Meaning your mod files from src/ and reobf/

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.