Jump to content

Recommended Posts

Posted

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! :)

Posted

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

Posted

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 :P

Posted
  On 12/8/2013 at 1:34 PM, diesieben07 said:

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) {

    }
}

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I am using Linux, I did Java --version and it shows I have Java 8 installed
    • Temu Coupon Code $100 Off [acu639380] For The USA This Month  Temu has become a go-to platform for online shopping in recent years, offering a vast selection of trendy items at unbeatable prices. With amazing discounts like the  Temu coupon code (acu639380) offering up to $100 Off for new users and exclusive offers for existing customers,  Temu is quickly cementing itself as a favorite among online shoppers. Whether you're looking for stylish fashion pieces, home essentials, or the latest gadgets, using  Temu 's promotional codes can help you save big on your purchases. In this blog, we’ll dive into all the incredible savings available this month, including details on the  Temu coupon codes (acu639380), which provide discounts like $100 Off for new and existing users, an additional 40% off, and even free gifts for first-time users. No matter where you’re located—whether in the United States, Canada, the UK, or beyond— Temu offers something for everyone. If you're looking to save money on your next shopping spree, keep reading to learn about all the best deals, discounts, and coupon codes you can use in June 2025. What is  Temu ? Before we dive into the details of the amazing  Temu coupon codes (acu639380), let’s first explore what  Temu is all about.  Temu is an online shopping platform that offers a massive range of products, from fashion and beauty items to home goods and electronics. With unbeatable prices, fast delivery, and free shipping to over 67 countries,  Temu is revolutionizing the way we shop online.  Temu is known for offering up to 90% off on certain items, which makes it an attractive option for budget-conscious shoppers. Whether you’re in the mood for trendy apparel, kitchen gadgets, or tech accessories,  Temu has something that fits your style and budget. Plus, with its regular sales events and exclusive coupon codes, there’s always an opportunity to save more. One of the biggest perks is the ability to combine discounts with promo codes like the  Temu coupon code (acu639380), which gives you a $100 discount for new users and additional savings for existing customers. Benefits of Using  Temu Coupon Codes  Temu coupon codes can offer significant discounts, and knowing how to take full advantage of these offers can lead to huge savings. The  Temu coupon code (acu639380) comes with a variety of benefits, such as: $100 Off for new users: This is a great way for new customers to enjoy  Temu ’s products at a fraction of the price. $100 Off for existing users: Loyal customers can still get a fantastic discount. 40% off: This discount code provides a solid extra savings on selected items. $100 coupon bundle: This is an exclusive offer for both new and existing users that lets you save on multiple purchases. Free gifts for new users: A welcome treat for first-time customers.  Temu Coupon Codes for June 2025 Now, let’s look at the  Temu coupon codes for June 2025 and how you can maximize your savings. These codes are designed to provide discounts based on your user status and location. Make sure to apply the  Temu coupon code (acu639380) when you check out to get the best deal possible! Here’s a breakdown of the  Temu coupon codes (acu639380) available:  Temu Coupon Code (acu639380) $100 Off for New Users Enjoy an instant $100 discount when you sign up for  Temu as a new user.  Temu Coupon Code (acu639380) $100 Off for Existing Users Loyal customers can also use this code to score a $100 discount on their next purchase.  Temu Coupon Code (acu639380) 40% Off Get up to 40% off on select items and categories—perfect for budget-savvy shoppers.  Temu $100 Coupon Bundle This bundle lets you apply a $100 discount on your shopping cart for both new and returning users.  Temu First Time User Coupon First-time buyers get an exclusive gift with this coupon code, alongside additional savings.  Temu Promo Code (acu639380) for June 2025 Use this code to unlock all of the June offers, including huge discounts on a wide variety of items. How  Temu Coupon Codes Help You Save More By using the  Temu coupon code (acu639380), you can access not only great discounts but also enjoy perks like free shipping and exclusive offers. The platform’s unbeatable prices, combined with these additional promo codes, create a shopping experience like no other. Let’s take a closer look at how each of these discounts can benefit you. $100 Off for new users: As a new user, you can score $100 Off on your first order with the  Temu coupon code (acu639380) for June 2025. This means you can shop for high-quality products like electronics, fashion, and home goods while spending less. $100 Off for existing users: Existing users also benefit from this promo code, which means even long-time shoppers can save big. The  Temu coupon code (acu639380) ensures that both new and loyal customers get an opportunity to save. 40% extra off: Certain categories are eligible for up to 40% off with this code. Whether you’re eyeing the latest tech gadget or refreshing your wardrobe, this extra discount can make a real difference to your total. Free gifts for new users: If you’re signing up for the first time,  Temu wants to welcome you with extra surprises. Use the  Temu first-time user coupon code to receive free gifts that’ll make your shopping experience even more enjoyable. $100 coupon bundle:  Temu has also created a special bundle that gives users—new and existing—a $100 discount on their orders. This bundle is perfect for those who love shopping in bulk and want to get the most value from their purchases. Where to Use  Temu Coupon Codes (acu639380)  Temu ships to over 67 countries, so no matter where you are, there’s a great deal waiting for you. Here’s a country-specific breakdown of how you can use the  Temu coupon code (acu639380) and enjoy incredible savings:  Temu Coupon Code $100 Off for USA: Residents of the United States can enjoy $100 Off their purchase using the  Temu coupon code (acu639380), which works for both new and existing users.  Temu Coupon Code $100 Off for Canada: Shoppers in Canada can save $100 on their orders when they apply the  Temu coupon code (acu639380), making it an excellent option for our neighbors to the north.  Temu Coupon Code $100 Off for UK: UK shoppers can also benefit from this amazing coupon code, ensuring they get $100 Off their next  Temu order.  Temu Coupon Code 40% Off for Mexico: Mexico-based shoppers can enjoy up to 40% off select items by using the  Temu coupon code (acu639380), which is ideal for those looking for exclusive savings.  Temu Coupon Code 40% Off for Brazil: Brazilian shoppers will be thrilled to know that they can apply the  Temu coupon code (acu639380) for up to 40% off on select items from the website.  Temu Coupon Code $100 Off for Japan: Shoppers in Japan can also take advantage of the  Temu coupon code (acu639380) and get $100 Off their purchases, which works for a wide range of products. Tips to Maximize Your Savings Stack Coupon Codes:  Temu allows users to stack certain discounts, so be sure to combine the  Temu coupon code (acu639380) with other promotional offers to get the best deal possible. Shop During Sales Events: Take advantage of major sales events like Black Friday, Cyber Monday, and holiday sales, when you can use  Temu coupon codes for even bigger discounts. Sign Up for Alerts: By signing up for  Temu ’s newsletter, you’ll be the first to know about new coupon codes, flash sales, and other special offers. Follow  Temu on Social Media:  Temu often shares exclusive discounts and codes on its social media platforms. Follow them to stay updated on the latest deals. Conclusion Whether you’re a first-time shopper or a loyal  Temu customer, using the  Temu coupon code (acu639380) is a smart way to save money on your favorite items. With discounts like $100 Off, up to 40% off, and exclusive coupon bundles,  Temu ensures that you never have to pay full price. With free shipping to over 67 countries, it’s easier than ever to shop for high-quality, affordable products that fit your budget. Don’t miss out on these amazing savings—apply the  Temu coupon code (acu639380) today and enjoy huge discounts on your next purchase.  
    • Make tests with different builds of these mods
    • it worked now. but is therre n outer way to use essential and forggematica?
    • Maybe a conflict with essential - make a test without it
  • Topics

×
×
  • Create New...

Important Information

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