Jump to content

[FORGE Dimension Handler]WorldProvider doesnt exist? (Can't be loaded)


Recommended Posts

Posted

Hi community,

I'm trying to create a new Dimension independent from Dimension API.

Now I'm getting this error and I can't find my fault.

Would be kind to help me, thanks.

My Main class (I colored the important parts)

 

package Alasar.TheVoid.common;

 

import net.minecraft.block.Block;

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.EnumToolMaterial;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import net.minecraft.world.biome.BiomeGenBase;

import net.minecraftforge.common.DimensionManager;

import net.minecraftforge.common.EnumHelper;

import net.minecraftforge.common.MinecraftForge;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.Init;

import cpw.mods.fml.common.Mod.Instance;

import cpw.mods.fml.common.Mod.PostInit;

import cpw.mods.fml.common.Mod.PreInit;

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.network.NetworkMod;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

@Mod(modid = "tv", name = "The Void", version = "pre1.0.0")

@NetworkMod(clientSideRequired = true, serverSideRequired = false)

 

public class TVMain {

 

@Instance("tv")

public static TVMain instance;

 

@SidedProxy(clientSide="Alasar.TheVoid.common.TVClientProxy", serverSide="Alasar.TheVoid.common.TVCommonProxy")

public static TVCommonProxy proxy;

 

public static TheVoidWorldGenerator worldGen = new TheVoidWorldGenerator();

public static Block ecryo;

public static Block eecryo;

public static Block necryo;

public static Block ecoal;

public static Block eiron;

public static Block elapis;

public static Block egold;

public static Block ered;

public static Block edia;

public static Block eem;

public static Block bdiao;

public static Block ebdiao;

public static Block nbdiao;

public static Block ncoal;

public static Block niron;

public static Block nlapis;

public static Block ngold;

public static Block nred;

public static Block ndia;

public static Block nem;

public static Block bdiab;

public static Block ecryb;

public static Block bportal;

static int interrealmid = DimensionManager.getNextFreeDimId();

// public static Block NetherOven;//

// public static int NetherOvenBottom;

// public static int NetherOvenTop;

// public static int NetherOvenSide;

// public static int NetherOvenFront;

// public static int NetherOvenFrontActive = 45;

// public static final int netherOvenGUIid  = 0;//

 

public static Item bdia;

public static Item ecry;

public static Item bsword;

public static Item bpick;

public static Item bshovel;

public static Item baxe;

public static Item bhoe;

    public static Item bhelmet;

    public static Item bplate;

    public static Item blegs;

    public static Item bboots;

   

    public static final BiomeGenBase nethercrack = new BiomeGenNethercrack(30).setBiomeName("Nether Dimension Crack").setColor(9286496);

    public static final BiomeGenBase endcrack = new BiomeGenEndcrack(31).setBiomeName("End Dimension Crack").setColor(9286496);

    public static final BiomeGenBase interrealm = new BedRealmBiome(32).setBiomeName("InterRealm").setColor(9286496);

   

    static EnumToolMaterial bdt = EnumHelper.addToolMaterial("bdt", 0, 800, 9F, 8, 14);

    static EnumArmorMaterial bda = EnumHelper.addArmorMaterial("bda", 35, new int[]{4,9,7,6}, 15);

 

@PreInit

public void preInit(FMLPreInitializationEvent event) {

 

}

 

@Init

public void init(FMLInitializationEvent event) {

ecryo = (new BlockEndCrystalOre(539, 0)).setBlockName("ecryo");

eecryo = (new BlockEndEndCrystalOre(555, 16)).setBlockName("eecryo");

necryo = (new BlockNetherEndCrystalOre(556, 17)).setBlockName("necryo");

ecoal = (new BlockEndOre(540, 1)).setBlockName("ecoal");

eiron = (new BlockEndOre(541, 2)).setBlockName("eiron");

elapis = (new BlockEndOre(542, 3)).setBlockName("elapis");

egold = (new BlockEndOre(543, 4)).setBlockName("egold");

ered = (new BlockEndOre(544, 5)).setBlockName("ered");

edia = (new BlockEndOre(545, 6)).setBlockName("edia");

eem = (new BlockEndOre(560, 20)).setBlockName("eem");

bdiao = (new BlockBlackDiamondOre(553, 14)).setBlockName("bdiao");

ebdiao = (new BlockEndBlackDiamondOre(552, 13)).setBlockName("ebdiao");

nbdiao = (new BlockNetherBlackDiamondOre(554, 15)).setBlockName("nbdiao");

ncoal = (new BlockNetherOre(546, 7)).setBlockName("ncoal");

niron = (new BlockNetherOre(547, 8)).setBlockName("niron");

nlapis = (new BlockNetherOre(548, 9)).setBlockName("nlapis");

ngold = (new BlockNetherOre(549, 10)).setBlockName("ngold");

nred = (new BlockNetherOre(550, 11)).setBlockName("nred");

ndia = (new BlockNetherOre(551, 12)).setBlockName("ndia");

nem = (new BlockNetherOre(559, 21)).setBlockName("nem");

bdiab = (new BlockBdiaB(557, 18)).setBlockName("bdiab");

ecryb = (new BlockEndCrystalBlock(558, 19)).setBlockName("ecryb");

bportal = (new BlockBPortal(561)).setBlockName("bportal");

// NetherOven = new BlockNetherOven(netherOvenGUIid, Material.iron,false).setBlockName("netheroven").setRequiresSelfNotify();

 

bdia = (new ItemBlackDiamond(900)).setItemName("bdia");

ecry = (new ItemEndCrystal(901)).setItemName("ecry").setIconIndex(2);

bsword = new ItemBSword(902, bdt).setIconIndex(1).setItemName("bsword");

bpick = new ItemBPick(903, bdt).setIconIndex(3).setItemName("bpick");

bshovel = new ItemBShovel(904, bdt).setIconIndex(4).setItemName("bshovel");

baxe = new ItemBAxe(905, bdt).setIconIndex(5).setItemName("baxe");

bhoe = new ItemBHoe(906, bdt).setIconIndex(6).setItemName("bhoe");

bhelmet = new ItemTVArmor(907,bda,5,0).setItemName("bhelmet").setIconIndex(7);

bplate = new ItemTVArmor(908,bda,5,1).setItemName("bplate").setIconIndex(8);

blegs = new ItemTVArmor(909,bda,5,2).setItemName("blegs").setIconIndex(9);

bboots = new ItemTVArmor(910,bda,5,3).setItemName("bboots").setIconIndex(10);

 

LanguageRegistry.addName(ecryo, "Endcrystal Ore");

LanguageRegistry.addName(eecryo, "End Endcrystal Ore");

LanguageRegistry.addName(necryo, "Nether Endcrystal Ore");

LanguageRegistry.addName(ecoal, "Endcoal");

LanguageRegistry.addName(eiron, "End Iron Ore");

LanguageRegistry.addName(elapis, "EndLapis");

LanguageRegistry.addName(egold, "End Gold Ore");

LanguageRegistry.addName(ered, "End Redstone Ore");

LanguageRegistry.addName(edia, "End Diamant Ore");

LanguageRegistry.addName(eem, "End Emerald Ore");

LanguageRegistry.addName(bdiao, "Black Diamond Ore");

LanguageRegistry.addName(ebdiao, "End Black Diamond Ore");

LanguageRegistry.addName(nbdiao, "Nether Black Diamond Ore");

LanguageRegistry.addName(ncoal, "Nether coal");

LanguageRegistry.addName(niron, "Nether Iron Ore");

LanguageRegistry.addName(nlapis, "Nether Lapis");

LanguageRegistry.addName(ngold, "Nether Gold Ore");

LanguageRegistry.addName(nred, "Nether Redstone Ore");

LanguageRegistry.addName(ndia, "Nether Diamond Ore");

LanguageRegistry.addName(nem, "Nether Emerald Ore");

LanguageRegistry.addName(bdiab, "Black Diamond Block");

LanguageRegistry.addName(ecryb, "End Crystal Block");

// LanguageRegistry.addName(NetherOven, "Nether Oven");

 

LanguageRegistry.addName(bdia, "Black Diamond");

LanguageRegistry.addName(ecry, "End Crystal");

LanguageRegistry.addName(bsword, "Black Diamond Sword");

LanguageRegistry.addName(bpick, "Black Diamond Pickaxe");

LanguageRegistry.addName(bshovel, "Black Diamond Shovel");

LanguageRegistry.addName(baxe, "Black Diamond Axe");

LanguageRegistry.addName(bhoe, "Black Diamond Hoe");

LanguageRegistry.addName(bhelmet, "Black Diamond Helmet");

LanguageRegistry.addName(bplate, "Black Diamond Plate");

LanguageRegistry.addName(blegs, "Black Diamond Legs");

LanguageRegistry.addName(bboots, "Black Diamond Boots");

 

MinecraftForge.setBlockHarvestLevel(ecryo, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(eecryo, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(necryo, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(ecoal, "pickaxe", 0);

MinecraftForge.setBlockHarvestLevel(eiron, "pickaxe", 1);

MinecraftForge.setBlockHarvestLevel(elapis, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(egold, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(ered, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(edia, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(eem, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(bdiao, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(ebdiao, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(nbdiao, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(ncoal, "pickaxe", 0);

MinecraftForge.setBlockHarvestLevel(niron, "pickaxe", 1);

MinecraftForge.setBlockHarvestLevel(nlapis, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(ngold, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(nred, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(ndia, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(nem, "pickaxe", 2);

MinecraftForge.setBlockHarvestLevel(bdiab, "pickaxe", 3);

MinecraftForge.setBlockHarvestLevel(ecryb, "pickaxe", 3);

 

GameRegistry.registerBlock(ecryo);

GameRegistry.registerBlock(eecryo);

GameRegistry.registerBlock(necryo);

GameRegistry.registerBlock(ecoal);

GameRegistry.registerBlock(eiron);

GameRegistry.registerBlock(elapis);

GameRegistry.registerBlock(egold);

GameRegistry.registerBlock(ered);

GameRegistry.registerBlock(edia);

GameRegistry.registerBlock(eem);

GameRegistry.registerBlock(bdiao);

GameRegistry.registerBlock(ebdiao);

GameRegistry.registerBlock(nbdiao);

GameRegistry.registerBlock(ncoal);

GameRegistry.registerBlock(niron);

GameRegistry.registerBlock(nlapis);

GameRegistry.registerBlock(ngold);

GameRegistry.registerBlock(nred);

GameRegistry.registerBlock(ndia);

GameRegistry.registerBlock(nem);

GameRegistry.registerBlock(bdiab);

GameRegistry.registerBlock(ecryb);

GameRegistry.registerBlock(bportal);

//ModLoader.registerBlock(NetherOven);//

 

proxy.registerRenderThings();

 

GameRegistry.registerWorldGenerator(new WorldgeneratorTV());

GameRegistry.addSmelting(ecoal.blockID, new ItemStack(Item.coal, 3), 2f);

GameRegistry.addSmelting(eiron.blockID, new ItemStack(Item.ingotIron, 3), 2f);

GameRegistry.addSmelting(elapis.blockID, new ItemStack(Item.dyePowder, 15, 4), 2f);

GameRegistry.addSmelting(egold.blockID, new ItemStack(Item.ingotGold, 3), 2f);

GameRegistry.addSmelting(ered.blockID, new ItemStack(Item.redstone, 15), 2f);

GameRegistry.addSmelting(edia.blockID, new ItemStack(Item.diamond, 3), 2f);

GameRegistry.addSmelting(ncoal.blockID, new ItemStack(Item.coal, 2), 2f);

GameRegistry.addSmelting(niron.blockID, new ItemStack(Item.ingotIron, 2), 2f);

GameRegistry.addSmelting(nlapis.blockID, new ItemStack(Item.dyePowder, 10, 4), 2f);

GameRegistry.addSmelting(ngold.blockID, new ItemStack(Item.ingotGold, 2), 2f);

GameRegistry.addSmelting(nred.blockID, new ItemStack(Item.redstone, 10), 2f);

GameRegistry.addSmelting(ndia.blockID, new ItemStack(Item.diamond, 2), 2f);

GameRegistry.addSmelting(nem.blockID, new ItemStack(Item.emerald, 2), 2f);

GameRegistry.addSmelting(eem.blockID, new ItemStack(Item.emerald, 3), 2f);

 

GameRegistry.addRecipe(new ItemStack(bsword), new Object[]

  {

  "X", "X", "Z", 'X', bdia, 'Z', Item.stick

  });

GameRegistry.addRecipe(new ItemStack(bpick), new Object[]

    {

    "XXX", " Z ", " Z ", 'X', bdia, 'Z', Item.stick

    });

GameRegistry.addRecipe(new ItemStack(bshovel), new Object[]

    {

    "x", "z", "z", 'x', bdia, 'z', Item.stick

    });

GameRegistry.addRecipe(new ItemStack(baxe), new Object[]

    {

    "xx ", "xz ", " z ", 'x', bdia, 'z', Item.stick

    });

GameRegistry.addRecipe(new ItemStack(bhoe), new Object[]

    {

    "xx ", " z ", " z ", 'x', bdia, 'z', Item.stick

    });

GameRegistry.addRecipe(new ItemStack(Item.enderPearl), new Object[]

    {

    " x ", "xzx", " x ", 'x', ecry, 'z', bdia

    });

        GameRegistry.addRecipe(new ItemStack(TVMain.bhelmet,1), new Object[]{

            "TTT","T T","  ",'T',TVMain.bdia

        });

        GameRegistry.addRecipe(new ItemStack(TVMain.bplate,1), new Object[]{

        "T T","TTT","TTT",'T',TVMain.bdia

        });           

        GameRegistry.addRecipe(new ItemStack(TVMain.blegs,1), new Object[]{

            "TTT","T T","T T",'T',TVMain.bdia

        });           

        GameRegistry.addRecipe(new ItemStack(TVMain.bboots,1), new Object[]{

            "  ","T T","T T",'T',TVMain.bdia

        });

        GameRegistry.addRecipe(new ItemStack(TVMain.bdiab,1), new Object[]{

            "TTT","TTT","TTT",'T',TVMain.bdia

        });

        GameRegistry.addRecipe(new ItemStack(TVMain.ecryb,1), new Object[]{

            "TTT","TTT","TTT",'T',TVMain.ecry

        });

        GameRegistry.addShapelessRecipe(new ItemStack(bdia, 9), new ItemStack(bdiab));

        GameRegistry.addShapelessRecipe(new ItemStack(ecry, 9), new ItemStack(ecryb));

        GameRegistry.addShapelessRecipe(new ItemStack(bportal, 1), new ItemStack(Block.dirt));

 

        GameRegistry.registerFuelHandler(new TVFuelHandler());

        GameRegistry.addBiome(nethercrack);

        GameRegistry.addBiome(endcrack);

        GameRegistry.addBiome(interrealm);

        DimensionManager.registerProviderType(interrealmid, BedRealmWorldProvider.class, true);

        DimensionManager.registerDimension(interrealmid, DimensionManager.getProviderType(interrealmid));

        //ModLoader.registerContainerID(null, netherOvenGUIid);//

}

 

@PostInit

public static void postInit(FMLPostInitializationEvent event) {

 

}

}

 

 

And my WorldProvider:

 

package Alasar.TheVoid.common;

 

import net.minecraft.world.WorldProvider;

import net.minecraft.world.biome.BiomeGenBase;

import net.minecraft.world.biome.WorldChunkManagerHell;

import net.minecraft.world.chunk.IChunkProvider;

 

public class WorldProviderBedDim extends WorldProvider

{

 

//The WorldProvider covers all the basics of the dimension. Look in WorldProviderBase.java and

//WorldProvider.java for all the potential qualities you can assign to your dimension.

 

public WorldProviderBedDim()

{

}

 

//The save file will be called DIM65 (DIM + id number).

public int getDimensionID()

{

 

return TVMain.interrealmid;

 

}

 

public boolean renderClouds()

{

 

return true;

 

}

public boolean renderEndSky()

{

    return false;

}

public boolean renderVoidFog()

{

 

return true;

 

}

 

 

 

public float setMoonSize()

{

return 2.1F;

}

 

public float setSunSize()

{

 

return 1.0F;

 

}

 

 

 

public String getSunTexture()

{

 

return null;

 

}

 

public String getMoonTexture()

{

 

return "/Blocks/moon.png";

 

}

 

public boolean renderStars()

{

 

return true;

 

}

 

 

public boolean darkenSkyDuringRain()

{

 

return true;

 

}

 

public String getRespawnMessage()

{

 

return " Leaving The InterRealm ";

 

}

 

//You can use an existing WorldChunkManager, or create your own. You must create your own to

//add multiple unique biomes to a dimension.

public void registerWorldChunkManager()

{

 

worldChunkMgr = new WorldChunkManagerHell(BiomeGenBase.plains, 1.0F, 0.0F);

 

}

 

//This is where you define your terrain generator.

public IChunkProvider getChunkProvider()

{

 

return new ChunkProviderBedDim(worldObj, worldObj.getSeed(), false);

 

}

 

//Note that, if you respawn in the dimension, you will end up at the coordinates of your

//overworld spawn point, not at the location of your first entrance to the dimension or

//something like that. Note also that beds don't work if you cannot respawn in the dimension.

public boolean canRespawnHere()

{

 

return false;

 

}

 

public float calculateCelestialAngle(long par1, float par3)

{

 

return 0.5F;

 

}

 

@Override

public String getDimensionName() {

// TODO Auto-generated method stub

return "InterRealm";

}

 

}

 

 

 

 

 

The error looks like this:

 

2013-01-04 11:58:32 [sEVERE] [ForgeModLoader] Caught exception from tv

java.lang.IllegalArgumentException: Could not get provider type for dimension 2, does not exist

at net.minecraftforge.common.DimensionManager.getProviderType(DimensionManager.java:105)

at Alasar.TheVoid.common.TVMain.init(TVMain.java:285)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

at net.minecraft.client.Minecraft.startGame(Minecraft.java:456)

at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)

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

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

2013-01-04 11:58:32 [iNFO] [sTDERR] java.lang.IllegalArgumentException: Could not get provider type for dimension 2, does not exist

2013-01-04 11:58:32 [iNFO] [sTDERR] at net.minecraftforge.common.DimensionManager.getProviderType(DimensionManager.java:105)

2013-01-04 11:58:32 [iNFO] [sTDERR] at Alasar.TheVoid.common.TVMain.init(TVMain.java:285)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:478)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268)

2013-01-04 11:58:32 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

2013-01-04 11:58:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268)

2013-01-04 11:58:32 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)

2013-01-04 11:58:32 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:656)

2013-01-04 11:58:32 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:207)

2013-01-04 11:58:32 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:456)

2013-01-04 11:58:32 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)

2013-01-04 11:58:32 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:744)

2013-01-04 11:58:32 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

 

 

 

Thanks for your help in advance.

Alasar

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



×
×
  • Create New...

Important Information

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