PizzAna Posted December 8, 2013 Share Posted December 8, 2013 I was working on my mod earlier today and when I compiled (I'm using IntelliJ IDEA 13), I got following crash report: ---- Minecraft Crash Report ---- // I blame Dinnerbone. Time: 8.12.2013 10:53 Description: There was a severe problem during mod loading that has caused the game to fail cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:502) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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.sendEventToModContainer(LoadController.java:197) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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:108) at cpw.mods.fml.common.Loader.loadMods(Loader.java:482) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:175) at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) at net.minecraft.client.Minecraft.run(Minecraft.java:808) at net.minecraft.client.main.Main.main(SourceFile:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) Caused by: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) ... 38 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.6.4 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.7.0_21, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 431971296 bytes (411 MB) / 693501952 bytes (661 MB) up to 954466304 bytes (910 MB) JVM Flags: 2 total; -Xmx1G -Xms512M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v8.11 FML v6.99.19.964 Minecraft Forge 9.11.1.964 6 mods loaded, 6 mods active mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed FML{6.99.19.964} [Forge Mod Loader] (forge-1.6.4-9.11.1.964-mcp.jar) Unloaded->Constructed Forge{9.11.1.964} [Minecraft Forge] (forge-1.6.4-9.11.1.964-mcp.jar) Unloaded->Constructed PizzAnaCore{0.1.0.a1} [PizzAna Core] (Doughcraft) Unloaded->Errored Doughcraft{0.1.0.a1} [Doughcraft] (Doughcraft) Unloaded->Errored PizzAnaWorld{0.1.0.a1} [PizzAna World] (Doughcraft) Unloaded->Errored And here's code I used: package pizzana; import cpw.mods.fml.common.FMLLog; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.event.FMLServerStartingEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.network.NetworkRegistry; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.server.MinecraftServer; import net.minecraftforge.common.Configuration; import net.minecraftforge.common.DimensionManager; import net.minecraftforge.common.Property; import net.minecraftforge.oredict.OreDictionary; import pizzana.cofh.util.ConfigHandler; import pizzana.cofh.util.version.VersionHandler; import pizzana.command.CommandHandler; import pizzana.core.PizzProps; import pizzana.core.Proxy; import java.io.File; import java.util.logging.Level; import java.util.logging.Logger; /** * Doughcraft * <p/> * 9:41 * 6.12.2013 * * @author PizzAna */ @Mod(modid = PizzProps.ID, name = PizzProps.NAME, version = PizzProps.VERSION) @NetworkMod(clientSideRequired = true, serverSideRequired = false, channels = { PizzProps.NET_CHANNEL_NAME }/*, packetHandler=PacketHandler.class, tinyPacketHandler=TinyPacketHandler.class */) public class PizzAnaCore { @Mod.Instance(PizzProps.ID) public static PizzAnaCore instance; @SidedProxy(clientSide = "pizzana.core.ProxyClient", serverSide = "pizzana.core.Proxy") public static Proxy proxy; @Mod.EventHandler public void preInit(FMLPreInitializationEvent event) { ....nothing here.... } @Mod.EventHandler public void initialize(FMLInitializationEvent event) { ....nothing here..... } @Mod.EventHandler public void postInit(FMLPostInitializationEvent event) { proxy.registerRenderInformation(); proxy.registerTickHandlers(); proxy.registerPacketInformation(); } } ProxyClient: package pizzana.core; import cpw.mods.fml.common.registry.TickRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.item.Item; import net.minecraftforge.client.event.TextureStitchEvent; import net.minecraftforge.event.ForgeSubscribe; import pizzana.PizzAnaCore; import pizzana.cofh.render.IconRegistry; import pizzana.cofh.util.version.TickHandlerVersion; /** * Doughcraft * <p/> * 10:16 * 6.12.2013 * * @author PizzAna */ public class ProxyClient extends Proxy { @Override public void registerRenderInformation() { } @Override public void registerTickHandlers() { if (PizzAnaCore.version.isMinecraftOutdated()) { return; } if ((!PizzProps.enableUpdateNotice) && (!PizzAnaCore.version.isCriticalUpdate())) { return; } TickHandlerVersion.registerModVersionInfo(PizzAnaCore.version); if (!TickHandlerVersion.isInitialized()) { TickRegistry.registerScheduledTickHandler(TickHandlerVersion.instance, Side.CLIENT); TickHandlerVersion.initialize(); } } } Proxy: package pizzana.core; import cpw.mods.fml.common.FMLCommonHandler; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.server.MinecraftServer; import net.minecraftforge.client.event.TextureStitchEvent; import net.minecraftforge.event.ForgeSubscribe; /** * Doughcraft * <p/> * 10:15 * 6.12.2013 * * @author PizzAna */ public class Proxy { public void registerRenderInformation() { } public void registerTickHandlers() { } public void registerPacketInformation() { } } If you need more information, I can provide some. Thanks! Quote Link to comment Share on other sites More sharing options...
larsgerrits Posted December 8, 2013 Share Posted December 8, 2013 You need to do the proxy stuff in the initialize method. Quote Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/ Link to comment Share on other sites More sharing options...
TheGreyGhost Posted December 8, 2013 Share Posted December 8, 2013 Hi My version of forge says this at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) if (!target.getType().isAssignableFrom(proxy.getClass())) { FMLLog.severe("Attempted to load a proxy type %s into %s.%s, but the types don't match", targetType, targ.getClassName(), targ.getObjectName()); throw new LoaderException(); } Looks to me like your @SidedProxy declaration is wrong for one of the three mods loaded, not necessarily the one whose code you showed? Could put a breakpoint there and find out easily enough? -TGG Quote Link to comment Share on other sites More sharing options...
PizzAna Posted December 8, 2013 Author Share Posted December 8, 2013 Here's the full log I get: "C:\Program Files\Java\jdk1.7.0_21\bin\java" -Xmx1G -Xms512M -Dfml.ignoreInvalidMinecraftCertificates=true -Djava.library.path=C:\Users\Antti\Desktop\Doughcraft\build\natives -Didea.launcher.port=7532 "-Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 13.0\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Java\jdk1.7.0_21\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\jce.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\jfxrt.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\resources.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\rt.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.7.0_21\jre\lib\ext\zipfs.jar;C:\Users\Antti\Desktop\Doughcraft\out\production\Doughcraft;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.minecraft\launchwrapper\1.8\jar\d4c0895977dd7f0b3f56281cee53a64d4c0c0322\launchwrapper-1.8.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.ow2.asm\asm-debug-all\4.1\jar\dd6ba5c392d4102458494e29f54f70ac534ec2a2\asm-debug-all-4.1.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.sf.jopt-simple\jopt-simple\4.5\jar\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\lzma\lzma\0.0.1\jar\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.paulscode\codecjorbis\20101023\jar\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.paulscode\codecwav\20101023\jar\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.paulscode\libraryjavasound\20101123\jar\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.paulscode\librarylwjglopenal\20100824\jar\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.paulscode\soundsystem\20120107\jar\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.lwjgl.lwjgl\lwjgl\2.9.0\jar\5654d06e61a1bba7ae1e7f5233e1106be64c91cd\lwjgl-2.9.0.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.lwjgl.lwjgl\lwjgl_util\2.9.0\jar\a778846b64008fc7f48ead2377f034e547991699\lwjgl_util-2.9.0.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.sourceforge.argo\argo\2.25\jar\751761ce15a3e3aaf3fc75b9f013ff8f7b88a585\argo-2.25.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.bouncycastle\bcprov-jdk15on\1.47\jar\b6f5d9926b0afbde9f4dbe3db88c5247be7794bb\bcprov-jdk15on-1.47.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.google.guava\guava\14.0\bundle\67b7be4ee7ba48e4828a42d6d5069761186d4a53\guava-14.0.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.apache.commons\commons-lang3\3.1\jar\905075e6c80f206bbe6cf1e809d2caa69f420c76\commons-lang3-3.1.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\commons-io\commons-io\2.4\jar\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.java.jinput\jinput\2.0.5\jar\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.java.jutils\jutils\1.0.0\jar\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\com.google.code.gson\gson\2.2.2\jar\1f96456ca233dec780aa224bff076d8e8bca3908\gson-2.2.2.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.lwjgl.lwjgl\lwjgl-platform\2.9.0\jar\2ba5dcb11048147f1a74eff2deb192c001321f77\lwjgl-platform-2.9.0-natives-linux.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.lwjgl.lwjgl\lwjgl-platform\2.9.0\jar\6621b382cb14cc409b041d8d72829156a87c31aa\lwjgl-platform-2.9.0-natives-osx.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.lwjgl.lwjgl\lwjgl-platform\2.9.0\jar\3f11873dc8e84c854ec7c5a8fd2e869f8aaef764\lwjgl-platform-2.9.0-natives-windows.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.java.jinput\jinput-platform\2.0.5\jar\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.java.jinput\jinput-platform\2.0.5\jar\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\net.java.jinput\jinput-platform\2.0.5\jar\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\Antti\.gradle\caches\minecraft\net\minecraftforge\forge\1.6.4-9.11.1.964\forge-1.6.4-9.11.1.964-mcp.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.scala-lang\scala-compiler\2.10.2\jar\64c8b1380cc53d6850823d6e4e7ae984aa44ef9c\scala-compiler-2.10.2.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.scala-lang\scala-library\2.10.2\jar\6ba65d12cd09d441083262d6f73d2257fec7c663\scala-library-2.10.2.jar;C:\Users\Antti\.gradle\caches\artifacts-26\filestore\org.scala-lang\scala-reflect\2.10.2\jar\444ff8e89a81697997ed8a98a4642ba283130249\scala-reflect-2.10.2.jar;C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 13.0\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain net.minecraft.launchwrapper.Launch --version 1.6 --tweakClass cpw.mods.fml.common.launcher.FMLTweaker --username PizzAna joulu 08, 2013 2:54:47 IP. net.minecraft.launchwrapper.LogWrapper log INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker joulu 08, 2013 2:54:47 IP. net.minecraft.launchwrapper.LogWrapper log INFO: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker joulu 08, 2013 2:54:48 IP. net.minecraft.launchwrapper.LogWrapper log INFO: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.99.19.964 for Minecraft 1.6.4 loading 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_21, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jdk1.7.0_21\jre 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2013-12-08 14:54:48 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2013-12-08 14:54:49 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2013-12-08 14:54:49 [sEVERE] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work! 2013-12-08 14:54:50 [sEVERE] [ForgeModLoader] The minecraft jar file:/C:/Users/Antti/.gradle/caches/minecraft/net/minecraftforge/forge/1.6.4-9.11.1.964/forge-1.6.4-9.11.1.964-mcp.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again! 2013-12-08 14:54:50 [sEVERE] [ForgeModLoader] FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem! 2013-12-08 14:54:50 [sEVERE] [ForgeModLoader] Technical information: ClientBrandRetriever was at jar:file:/C:/Users/Antti/.gradle/caches/minecraft/net/minecraftforge/forge/1.6.4-9.11.1.964/forge-1.6.4-9.11.1.964-mcp.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it 2013-12-08 14:54:50 [sEVERE] [ForgeModLoader] FML appears to be missing any signature data. This is not a good thing 2013-12-08 14:54:50 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2013-12-08 14:54:50 [iNFO] [sTDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg 2013-12-08 14:54:50 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker 2013-12-08 14:54:51 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main} 2013-12-08 14:54:52 [iNFO] [Minecraft-Client] Setting user: PizzAna 2013-12-08 14:54:53 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0 2013-12-08 14:54:53 [iNFO] [sTDERR] javax.imageio.IIOException: Can't read input file! 2013-12-08 14:54:53 [iNFO] [sTDERR] at javax.imageio.ImageIO.read(ImageIO.java:1301) 2013-12-08 14:54:53 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.readImage(Minecraft.java:558) 2013-12-08 14:54:53 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:419) 2013-12-08 14:54:53 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:808) 2013-12-08 14:54:53 [iNFO] [sTDERR] at net.minecraft.client.main.Main.main(SourceFile:101) 2013-12-08 14:54:53 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-12-08 14:54:53 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-12-08 14:54:53 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-12-08 14:54:53 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601) 2013-12-08 14:54:53 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2013-12-08 14:54:53 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2013-12-08 14:54:53 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-12-08 14:54:53 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-12-08 14:54:53 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-12-08 14:54:53 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601) 2013-12-08 14:54:53 [iNFO] [sTDERR] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) 2013-12-08 14:54:55 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default 2013-12-08 14:54:56 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-12-08 14:54:56 [iNFO] [sTDOUT] MinecraftForge v9.11.1.964 Initialized 2013-12-08 14:54:56 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.964 Initialized 2013-12-08 14:54:56 [iNFO] [sTDOUT] Replaced 112 ore recipies 2013-12-08 14:54:56 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-12-08 14:54:56 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Antti\Desktop\Doughcraft\run\client\config\logging.properties 2013-12-08 14:54:56 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-12-08 14:54:57 [iNFO] [ForgeModLoader] Searching C:\Users\Antti\Desktop\Doughcraft\run\client\mods for mods 2013-12-08 14:55:05 [WARNING] [ForgeModLoader] Zip file rt.jar failed to read properly, it will be ignored java.lang.NullPointerException at cpw.mods.fml.common.discovery.asm.ASMModParser.isBaseMod(ASMModParser.java:130) at cpw.mods.fml.common.ModContainerFactory.build(ModContainerFactory.java:34) at cpw.mods.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:83) at cpw.mods.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) at cpw.mods.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) at cpw.mods.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:127) at cpw.mods.fml.common.Loader.identifyMods(Loader.java:325) at cpw.mods.fml.common.Loader.loadMods(Loader.java:455) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:175) at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) at net.minecraft.client.Minecraft.run(Minecraft.java:808) at net.minecraft.client.main.Main.main(SourceFile:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) 2013-12-08 14:55:08 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-12-08 14:55:08 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 6 mods to load 2013-12-08 14:55:08 [iNFO] [mcp] Activating mod mcp 2013-12-08 14:55:08 [iNFO] [FML] Activating mod FML 2013-12-08 14:55:09 [iNFO] [Forge] Activating mod Forge 2013-12-08 14:55:09 [iNFO] [Doughcraft] Activating mod Doughcraft 2013-12-08 14:55:09 [iNFO] [PizzAnaCore] Activating mod PizzAnaCore 2013-12-08 14:55:09 [iNFO] [PizzAnaWorld] Activating mod PizzAnaWorld 2013-12-08 14:55:09 [WARNING] [Doughcraft] Mod Doughcraft is missing a pack.mcmeta file, things may not work well 2013-12-08 14:55:09 [WARNING] [PizzAna Core] Mod PizzAna Core is missing a pack.mcmeta file, things may not work well 2013-12-08 14:55:09 [WARNING] [PizzAna World] Mod PizzAna World is missing a pack.mcmeta file, things may not work well 2013-12-08 14:55:09 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Doughcraft, FMLFileResourcePack:PizzAna Core, FMLFileResourcePack:PizzAna World 2013-12-08 14:55:09 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-12-08 14:55:09 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-12-08 14:55:09 [WARNING] [ForgeModLoader] The mod id PizzAnaCore attempted to register channels without specifying a packet handler 2013-12-08 14:55:09 [sEVERE] [ForgeModLoader] Attempted to load a proxy type pizzana.doughcraft.core.ProxyClient into pizzana.doughcraft.Doughcraft.proxy, but the types don't match 2013-12-08 14:55:09 [sEVERE] [ForgeModLoader] An error occured trying to load a proxy into {clientSide=pizzana.doughcraft.core.ProxyClient, serverSide=pizzana.doughcraft.core.Proxy}.pizzana.doughcraft.Doughcraft cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:502) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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.sendEventToModContainer(LoadController.java:197) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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:108) at cpw.mods.fml.common.Loader.loadMods(Loader.java:482) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:175) at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) at net.minecraft.client.Minecraft.run(Minecraft.java:808) at net.minecraft.client.main.Main.main(SourceFile:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) 2013-12-08 14:55:09 [sEVERE] [com.google.common.eventbus.EventBus.PizzAnaCore] Could not dispatch event: cpw.mods.fml.common.event.FMLConstructionEvent@1db76e38 to handler [wrapper public void cpw.mods.fml.common.FMLModContainer.constructMod(cpw.mods.fml.common.event.FMLConstructionEvent)] java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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.sendEventToModContainer(LoadController.java:197) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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:108) at cpw.mods.fml.common.Loader.loadMods(Loader.java:482) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:175) at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) at net.minecraft.client.Minecraft.run(Minecraft.java:808) at net.minecraft.client.main.Main.main(SourceFile:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) Caused by: cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:502) ... 37 more Caused by: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) ... 38 more 2013-12-08 14:55:09 [sEVERE] [Doughcraft] Skipping event FMLConstructionEvent and marking errored mod Doughcraft since required dependency PizzAnaCore has errored 2013-12-08 14:55:09 [sEVERE] [PizzAnaWorld] Skipping event FMLConstructionEvent and marking errored mod PizzAnaWorld since required dependency PizzAnaCore has errored 2013-12-08 14:55:09 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue 2013-12-08 14:55:09 [sEVERE] [ForgeModLoader] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed FML{6.99.19.964} [Forge Mod Loader] (forge-1.6.4-9.11.1.964-mcp.jar) Unloaded->Constructed Forge{9.11.1.964} [Minecraft Forge] (forge-1.6.4-9.11.1.964-mcp.jar) Unloaded->Constructed PizzAnaCore{0.1.0.a1} [PizzAna Core] (Doughcraft) Unloaded->Errored Doughcraft{0.1.0.a1} [Doughcraft] (Doughcraft) Unloaded->Errored PizzAnaWorld{0.1.0.a1} [PizzAna World] (Doughcraft) Unloaded->Errored 2013-12-08 14:55:09 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2013-12-08 14:55:09 [sEVERE] [ForgeModLoader] Caught exception from PizzAnaCore cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:502) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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.sendEventToModContainer(LoadController.java:197) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) 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:313) 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:108) at cpw.mods.fml.common.Loader.loadMods(Loader.java:482) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:175) at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) at net.minecraft.client.Minecraft.run(Minecraft.java:808) at net.minecraft.client.main.Main.main(SourceFile:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) Caused by: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) ... 38 more 2013-12-08 14:55:09 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2013-12-08 14:55:09 [iNFO] [sTDOUT] // Shall we play a game? 2013-12-08 14:55:09 [iNFO] [sTDOUT] 2013-12-08 14:55:09 [iNFO] [sTDOUT] Time: 8.12.2013 14:55 2013-12-08 14:55:09 [iNFO] [sTDOUT] Description: There was a severe problem during mod loading that has caused the game to fail 2013-12-08 14:55:09 [iNFO] [sTDOUT] 2013-12-08 14:55:09 [iNFO] [sTDOUT] cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:502) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:197) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:177) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:108) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.loadMods(Loader.java:482) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:175) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:808) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(SourceFile:101) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-12-08 14:55:09 [iNFO] [sTDOUT] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) 2013-12-08 14:55:09 [iNFO] [sTDOUT] Caused by: cpw.mods.fml.common.LoaderException 2013-12-08 14:55:09 [iNFO] [sTDOUT] at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) 2013-12-08 14:55:09 [iNFO] [sTDOUT] ... 38 more 2013-12-08 14:55:09 [iNFO] [sTDOUT] 2013-12-08 14:55:09 [iNFO] [sTDOUT] 2013-12-08 14:55:09 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2013-12-08 14:55:09 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2013-12-08 14:55:09 [iNFO] [sTDOUT] 2013-12-08 14:55:09 [iNFO] [sTDOUT] -- System Details -- 2013-12-08 14:55:09 [iNFO] [sTDOUT] Details: 2013-12-08 14:55:09 [iNFO] [sTDOUT] Minecraft Version: 1.6.4 2013-12-08 14:55:09 [iNFO] [sTDOUT] Operating System: Windows 7 (amd64) version 6.1 2013-12-08 14:55:09 [iNFO] [sTDOUT] Java Version: 1.7.0_21, Oracle Corporation 2013-12-08 14:55:09 [iNFO] [sTDOUT] Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation 2013-12-08 14:55:09 [iNFO] [sTDOUT] Memory: 434226752 bytes (414 MB) / 693501952 bytes (661 MB) up to 954466304 bytes (910 MB) 2013-12-08 14:55:09 [iNFO] [sTDOUT] JVM Flags: 2 total; -Xmx1G -Xms512M 2013-12-08 14:55:09 [iNFO] [sTDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used 2013-12-08 14:55:09 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed 2013-12-08 14:55:09 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 2013-12-08 14:55:09 [iNFO] [sTDOUT] FML: MCP v8.11 FML v6.99.19.964 Minecraft Forge 9.11.1.964 6 mods loaded, 6 mods active 2013-12-08 14:55:09 [iNFO] [sTDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed 2013-12-08 14:55:09 [iNFO] [sTDOUT] FML{6.99.19.964} [Forge Mod Loader] (forge-1.6.4-9.11.1.964-mcp.jar) Unloaded->Constructed 2013-12-08 14:55:09 [iNFO] [sTDOUT] Forge{9.11.1.964} [Minecraft Forge] (forge-1.6.4-9.11.1.964-mcp.jar) Unloaded->Constructed 2013-12-08 14:55:09 [iNFO] [sTDOUT] PizzAnaCore{0.1.0.a1} [PizzAna Core] (Doughcraft) Unloaded->Errored 2013-12-08 14:55:09 [iNFO] [sTDOUT] Doughcraft{0.1.0.a1} [Doughcraft] (Doughcraft) Unloaded->Errored 2013-12-08 14:55:09 [iNFO] [sTDOUT] PizzAnaWorld{0.1.0.a1} [PizzAna World] (Doughcraft) Unloaded->Errored 2013-12-08 14:55:09 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Antti\Desktop\Doughcraft\run\client\.\crash-reports\crash-2013-12-08_14.55.09-client.txt Process finished with exit code -1 And there shouldn't be nothing wrong with @SidedProxys, I have double checked them like thousands of times Quote Link to comment Share on other sites More sharing options...
PizzAna Posted December 8, 2013 Author Share Posted December 8, 2013 There is something wrong with your Doughcraft proxies. Post code for that. Here you go. Doughcraft.java (I have removed the code that has nothing to do with proxies): package pizzana.doughcraft; import com.google.common.eventbus.Subscribe; import cpw.mods.fml.common.*; import cpw.mods.fml.common.event.*; import cpw.mods.fml.common.network.NetworkMod; import net.minecraft.creativetab.CreativeTabs; import net.minecraftforge.common.Configuration; import net.minecraftforge.common.MinecraftForge; import pizzana.PizzAnaWorld; import pizzana.cofh.api.world.WeightedRandomBlock; import pizzana.cofh.util.ConfigHandler; import pizzana.cofh.util.StringHelper; import pizzana.cofh.util.version.VersionHandler; import pizzana.core.PizzProps; import pizzana.core.Proxy; import pizzana.doughcraft.block.DCBlocks; import pizzana.doughcraft.block.simple.BlockOre; import pizzana.doughcraft.core.DCProps; import pizzana.doughcraft.gui.CreativeTabBlocks; import pizzana.doughcraft.gui.CreativeTabItems; import pizzana.doughcraft.gui.CreativeTabTools; import pizzana.doughcraft.item.DCItems; import pizzana.doughcraft.util.crafting.DCCraftingHandler; import java.io.File; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; /** * Doughcraft * <p/> * 9:20 * 6.12.2013 * * @author PizzAna */ @Mod(name = DCProps.NAME, version = DCProps.VERSION, useMetadata = false, modid = DCProps.ID, dependencies = DCProps.DEPENDENCIES) @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class Doughcraft { @SidedProxy(clientSide = "pizzana.doughcraft.core.ProxyClient", serverSide = "pizzana.doughcraft.core.Proxy") public static Proxy proxy; @Mod.Instance(DCProps.ID) public static Doughcraft instance; public static final Logger log = Logger.getLogger(DCProps.NAME); public static final ConfigHandler config = new ConfigHandler(DCProps.VERSION, DCProps.BLOCK_ID_START, DCProps.ITEM_ID_START); public static final VersionHandler version = new VersionHandler(DCProps.NAME, DCProps.VERSION, DCProps.RELEASE_URL, log); @Mod.EventHandler public void preInit(FMLPreInitializationEvent event) { version.checkForNewVersion(); config.setConfiguration(new Configuration(new File(event.getModConfigurationDirectory(), PizzProps.configPath + "Doughcraft.cfg"))); String category = "general"; String version = config.get(category, "Version", DCProps.VERSION); DCProps.enableUpdateNotice = config.get(category, "EnableUpdateNotifications", DCProps.enableUpdateNotice); config.init(); } @Mod.EventHandler public void initialize(FMLInitializationEvent event) { MinecraftForge.EVENT_BUS.register(proxy); } @Mod.EventHandler public void postInit(FMLPostInitializationEvent event) { proxy.registerPacketInformation(); proxy.registerRenderInformation(); proxy.registerTickHandlers(); config.cleanUp(false, true); } @Subscribe public void loadComplete(FMLLoadCompleteEvent event) { // TODO Add custom machine recipes here log.log(Level.INFO, "Mod's loading is complete."); } static { log.setParent(FMLLog.getLogger()); } } Proxy.java: package pizzana.doughcraft.core; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraftforge.client.event.TextureStitchEvent; import net.minecraftforge.event.ForgeSubscribe; import pizzana.doughcraft.Doughcraft; /** * Doughcraft * <p/> * 10:33 * 8.12.2013 * * @author PizzAna */ public class Proxy { public void registerRenderInformation() { } public void registerTickHandlers() { } @SideOnly(Side.CLIENT) @ForgeSubscribe public void registerIcons(TextureStitchEvent.Pre event) { } @SideOnly(Side.CLIENT) @ForgeSubscribe public void initializeIcons(TextureStitchEvent.Post event) { } } ProxyClient.java: package pizzana.doughcraft.core; import cpw.mods.fml.common.registry.TickRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraftforge.client.MinecraftForgeClient; import net.minecraftforge.client.event.TextureStitchEvent; import net.minecraftforge.event.ForgeSubscribe; import pizzana.cofh.util.version.TickHandlerVersion; import pizzana.doughcraft.Doughcraft; import pizzana.doughcraft.util.TickHandlerClientConfig; /** * Doughcraft * <p/> * 10:33 * 8.12.2013 * * @author PizzAna */ public class ProxyClient extends Proxy { @Override public void registerRenderInformation() { } @Override public void registerTickHandlers() { if (Doughcraft.version.isMinecraftOutdated()) { return; } if ((!DCProps.enableUpdateNotice) && (!Doughcraft.version.isCriticalUpdate())) { return; } TickHandlerVersion.registerModVersionInfo(Doughcraft.version); if (!TickHandlerVersion.isInitialized()) { TickRegistry.registerScheduledTickHandler(TickHandlerVersion.instance, Side.CLIENT); TickHandlerVersion.initialize(); } TickRegistry.registerTickHandler(TickHandlerClientConfig.instance, Side.CLIENT); } @SideOnly(Side.CLIENT) @ForgeSubscribe @Override public void registerIcons(TextureStitchEvent.Pre event) { } @SideOnly(Side.CLIENT) @ForgeSubscribe @Override public void initializeIcons(TextureStitchEvent.Post event) { } } Quote Link to comment Share on other sites More sharing options...
PizzAna Posted December 8, 2013 Author Share Posted December 8, 2013 You imported the wrong proxy. Derp But thanks anyways Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.