1

Crops error

pieterx12's Avatar pieterx129/30/14 11:52 am
1 emeralds 1.1k 5
10/1/2014 12:24 am
pieterx12's Avatar pieterx12
Hello I have a problem with my crops when i place them my minecraft close with an error please help me .
Code:
basic:
package tutorial.basic;





import tutorial.basic.armor.Armor;
import tutorial.basic.biome.BiomeRegistry;
import tutorial.basic.biome.WorldTypeLavaLands;
import tutorial.basic.blocks.AlachiteOre;
import tutorial.basic.blocks.HardedIce;
import tutorial.basic.blocks.IceWheat;
import tutorial.basic.blocks.LavaBlock;
import tutorial.basic.blocks.MeteorBlock;
import tutorial.basic.blocks.MeteorBlockB;
import tutorial.basic.blocks.ModBlocks;
import tutorial.basic.items.AlachiteIngot;
import tutorial.basic.items.IceShard;
import tutorial.basic.items.MeteorHelmet;
import tutorial.basic.items.meteorore;
import tutorial.basic.tools.AlachiteSword;
import tutorial.basic.tools.IceSword;
import tutorial.basic.tools.MeteorSword;
import tutorial.basic.worldgeneration.MeteorBlockWG;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.Item.ToolMaterial;
import net.minecraft.item.ItemArmor.ArmorMaterial;
import net.minecraft.item.ItemSeeds;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.Achievement;
import net.minecraft.world.WorldType;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraftforge.common.AchievementPage;
import net.minecraftforge.common.util.EnumHelper;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Instance;
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.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;

@Mod(modid="basic", name="basic", version="1.0.0")

public class basic {
public final static String NAME = "basic";
public static Block meteorblock = new MeteorBlock();
public static Block hardedice = new HardedIce();
public static Item meteorore = new meteorore(1600);
public static ToolMaterial meteorore1 = EnumHelper.addToolMaterial("meteorore", 2, 250, 11.0F, 2.5F, 10);
@Instance("basic")
public static basic instance;
public static MeteorBlockWG Worldgen1 = new MeteorBlockWG();
// Says where the client and server 'proxy' code is loaded.
@SidedProxy(clientSide="tutorial.basic.client.ClientProxy", serverSide="tutorial.basic.CommonProxy")
public static CommonProxy proxy;
//Achievements
public static Achievement MeteorAchievement;
//Blocks
public static Block IceWheat ;
public static Block LavaBlock = new LavaBlock();
public static Block AlachiteOre = new AlachiteOre();
public static MeteorBlockB MeteorBlock = new MeteorBlockB();
//Items
public static ToolMaterial AlachiteTool = EnumHelper.addToolMaterial("AlachiteIngot", 2, 250, 13.0F, 4.0F, 10);
public static tutorial.basic.items.AlachiteIngot AlachiteIngot = new AlachiteIngot(3602);
public static ToolMaterial iceshard1 = EnumHelper.addToolMaterial("iceshard", 2, 250, 13.0F, 4.0F, 10);
public static Item iceshard = new IceShard(30001);
public static Item IceWheatSeeds;
public static Item IceWheatCrop;
//Armor


public static ArmorMaterial MeteorOre = EnumHelper.addArmorMaterial("MeteorOre", 15, new int[]{5, 10, 9, 5}, 30);
public static Item MeteorHelmet = new Armor(5000, MeteorOre, 0, 0, "meteorore").setUnlocalizedName("MeteorHelmet").setTextureName("basic:MeteorHelmet");
public static Item MeteorChestplate = new Armor(5001, MeteorOre, 0, 1, "meteorore").setUnlocalizedName("MeteorChestplate").setTextureName("basic:MeteorChestplate");
public static Item MeteorLeggins = new Armor(5002, MeteorOre, 0, 2, "meteorore").setUnlocalizedName("MeteorLeggings").setTextureName("basic:MeteorLeggings");
public static Item MeteorBoots = new Armor(5003, MeteorOre, 0, 3, "meteorore").setUnlocalizedName("MeteorBoots").setTextureName("basic:MeteorBoots");

//Tools
public final static Item AlachiteSword = new AlachiteSword(5000, AlachiteTool);
public final static Item meteorsword = new MeteorSword(5000, meteorore1);
public final static Item icesword = new IceSword(50001, iceshard1);

@EventHandler
public void load(FMLInitializationEvent event) {
//Crops
IceWheatSeeds = new ItemSeeds(basic.IceWheat, Blocks.farmland).setCreativeTab(CreativeTabs.tabMaterials).setUnlocalizedName("IceWheatSeeds").setTextureName("basic:IceWheatSeeds");
//Achievement
MeteorAchievement = new Achievement("achievement.MeteorAchievement", "mineMeteorOre", 0, 0, new ItemStack(basic.meteorore), (Achievement)null).initIndependentStat().registerStat();
AchievementPage.registerAchievementPage(new AchievementPage("Minecraft2.0 Achievements", new Achievement[]{MeteorAchievement}));
proxy.registerRenderers();

GameRegistry.addRecipe(new ItemStack(meteorsword), new Object[]{
" y " ,
" y " ,
" z " ,
'y', basic.meteorore, 'x', ModBlocks.meteorblock, 'z', Items.stick
});
GameRegistry.addRecipe(new ItemStack(meteorsword), new Object[]{
" y " ,
" y " ,
" x " ,
'y', basic.AlachiteOre, 'x', Items.stick,
});

GameRegistry.registerBlock(LavaBlock, "LavaBlock");
LanguageRegistry.addName(LavaBlock, "Lava Block");
GameRegistry.registerItem(AlachiteSword, "AlachiteSword");
LanguageRegistry.addName(AlachiteSword, "Malachite Sword");
GameRegistry.registerItem(AlachiteIngot, "AlachiteIngot");
LanguageRegistry.addName(AlachiteIngot, "Malachite Ingot");
GameRegistry.registerBlock(AlachiteOre, "AlachiteOre");
LanguageRegistry.addName(AlachiteOre, "Alachite Ore");
GameRegistry.registerBlock(MeteorBlock, "MeteorBlock");
LanguageRegistry.addName(MeteorBlock, "Meteor Block");
GameRegistry.registerItem(MeteorBoots, "MeteorBoots");
LanguageRegistry.addName(MeteorBoots, "Meteor Boots");
GameRegistry.registerItem(MeteorLeggins, "MeteorLeggins");
LanguageRegistry.addName(MeteorLeggins, "Meteor Leggings");
GameRegistry.registerWorldGenerator(Worldgen1, 1);
GameRegistry.registerItem(icesword, "IceSword");
LanguageRegistry.addName(icesword, "Ice Sword");
GameRegistry.registerItem(MeteorHelmet, "MeteorHelmet");
LanguageRegistry.addName(MeteorHelmet, "Meteor Helmet");
GameRegistry.registerItem(MeteorChestplate, "Meteor Chestplate");
LanguageRegistry.addName(MeteorChestplate, "Meteor Chestplate");
GameRegistry.registerBlock(hardedice, "hardedice");
GameRegistry.registerItem(meteorsword, "meteorsword");
LanguageRegistry.addName(meteorsword, "Meteor Sword");
GameRegistry.registerBlock(meteorblock, "meteorblock");
LanguageRegistry.addName(hardedice, "Harded Ice");
GameRegistry.registerItem(meteorore, "meteorore");
LanguageRegistry.addName(meteorore, "Meteor Dust");
GameRegistry.registerItem(iceshard, "iceshard");
LanguageRegistry.addName(iceshard, "Ice Shard");
GameRegistry.addSmelting(new ItemStack(ModBlocks.meteorblock), new ItemStack(basic.meteorore), 20F);
GameRegistry.addSmelting(new ItemStack(basic.hardedice), new ItemStack(basic.iceshard), 20F);
GameRegistry.addSmelting(new ItemStack(basic.AlachiteOre), new ItemStack(basic.AlachiteIngot), 100F);
//Crafting
GameRegistry.addRecipe(new ItemStack(basic.MeteorHelmet), new Object[] { "WWW", "W W", " ", 'W', new ItemStack(meteorore)});
GameRegistry.addRecipe(new ItemStack(basic.AlachiteSword), new Object[] { " W ", " W ", " Z ", 'W', new ItemStack(basic.AlachiteOre),'Z' ,new ItemStack(Items.stick)});
GameRegistry.addRecipe(new ItemStack(basic.MeteorChestplate), new Object[] { "W W", "WWW", "WWW", 'W', new ItemStack(meteorore)});
BiomeRegistry.basic();
IceWheat = new IceWheat().setBlockName("IceWheat").setCreativeTab(CreativeTabs.tabMaterials).setBlockTextureName("basic:wheatcrop");
IceWheatCrop = new Item().setCreativeTab(CreativeTabs.tabMaterials).setUnlocalizedName("IceWheatItem");
GameRegistry.registerItem(IceWheatSeeds, "IceWheatSeeds");
GameRegistry.registerItem(IceWheatCrop, "IceWheatCrop");
GameRegistry.registerBlock(IceWheat, "IceWheat");

};


@EventHandler
public void PreInit(FMLPreInitializationEvent event){
ModBlocks.init();
}
@EventHandler
public void PostLoad(FMLPostInitializationEvent PostEvent){
WorldType LAVALANDS = new WorldTypeLavaLands(3, "LavaLands");
}


}
Posted by pieterx12's Avatar
pieterx12
Level 8 : Apprentice Miner
1

Create an account or sign in to comment.

5

1
10/01/2014 12:24 am
Level 8 : Apprentice Miner
pieterx12
pieterx12's Avatar
Here is the crash report
[17:29:36] [Client thread/ERROR]: Using missing texture, unable to load basic:textures/blocks/wheatcrop_stage_6.png
java.io.FileNotFoundException: basic:textures/blocks/wheatcrop_stage_6.png
at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[SimpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:653) [Minecraft.class:?]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
at GradleStart.bounce(GradleStart.java:107) [start/:?]
at GradleStart.startClient(GradleStart.java:100) [start/:?]
at GradleStart.main(GradleStart.java:55) [start/:?]
[17:29:36] [Client thread/ERROR]: Using missing texture, unable to load basic:textures/blocks/wheatcrop_stage_7.png
java.io.FileNotFoundException: basic:textures/blocks/wheatcrop_stage_7.png
at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[SimpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:653) [Minecraft.class:?]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
at GradleStart.bounce(GradleStart.java:107) [start/:?]
at GradleStart.startClient(GradleStart.java:100) [start/:?]
at GradleStart.main(GradleStart.java:55) [start/:?]
[17:29:37] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
[17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[17:29:37] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[17:29:37] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[17:29:37] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[17:29:37] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[17:29:37] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[17:29:38] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[17:29:38] [Sound Library Loader/INFO]: Sound engine started
[17:30:08] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[17:30:08] [Server thread/INFO]: Generating keypair
[17:30:09] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[17:30:10] [Server thread/INFO] [FML]: Applying holder lookups
[17:30:10] [Server thread/INFO] [FML]: Holder lookups applied
[17:30:10] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@9705b95)
[17:30:10] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@9705b95)
[17:30:10] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@9705b95)
[17:30:10] [Server thread/INFO]: Preparing start region for level 0
[17:30:11] [Server thread/INFO]: Preparing spawn area: 2%
[17:30:12] [Server thread/INFO]: Preparing spawn area: 54%
[17:30:15] [Server thread/INFO]: Changing view distance to 11, from 10
[17:30:15] [Netty Client IO #0/INFO] [FML]: Server protocol version 1
[17:30:15] [Netty IO #1/INFO] [FML]: Client protocol version 1
[17:30:15] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : mcp@9.05,FML@7.10.84.1217,basic@1.0.0,Forge@10.13.1.1217
[17:30:15] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[17:30:15] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[17:30:15] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[17:30:15] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[17:30:15] [Server thread/INFO]: ForgeDevName[local:E:69703b91] logged in with entity id 428 at (-228.11186819165474, 79.63388950228916, 289.26680497860343)
[17:30:15] [Server thread/INFO]: ForgeDevName joined the game
[17:30:21] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5972ms behind, skipping 119 tick(s)
[17:30:38] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5527ms behind, skipping 110 tick(s)
[17:30:47] [Client thread/INFO]: Warning: Clientside chunk ticking took 113 ms
[17:30:47] [Client thread/INFO]: Warning: Clientside chunk ticking took 101 ms
[17:30:53] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2173ms behind, skipping 43 tick(s)
[17:31:12] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3117ms behind, skipping 62 tick(s)
[17:31:27] [Server thread/ERROR]: Encountered an unexpected exception
net.minecraft.util.ReportedException: Ticking memory connection
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:736) ~[MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:624) ~[MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[IntegratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:495) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:762) [MinecraftServer$2.class:?]
Caused by: java.lang.NullPointerException
at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96) ~[ExtendedBlockStorage.class:?]
at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667) ~[Chunk.class:?]
at net.minecraft.world.World.setBlock(World.java:515) ~[World.class:?]
at net.minecraft.world.World.setBlock(World.java:663) ~[World.class:?]
at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41) ~[ItemSeeds.class:?]
at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146) ~[ItemStack.class:?]
at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:422) ~[ItemInWorldManager.class:?]
at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:591) ~[NetHandlerPlayServer.class:?]
at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74) ~[C08PacketPlayerBlockPlacement.class:?]
at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122) ~[C08PacketPlayerBlockPlacement.class:?]
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) ~[NetworkManager.class:?]
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?]
... 5 more
[17:31:27] [Server thread/ERROR]: This crash report has been saved to: C:\Users\pieter-PC\Documents\minecraft2.0\eclipse\.\crash-reports\crash-2014-09-30_17.31.27-server.txt
[17:31:27] [Server thread/INFO]: Stopping server
[17:31:27] [Server thread/INFO]: Saving players
[17:31:27] [Server thread/INFO]: Saving worlds
[17:31:27] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:31:29] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:31:29] [Server thread/INFO]: Saving chunks for level 'New World'/The End
[17:31:30] [Server thread/INFO] [FML]: Unloading dimension 0
[17:31:30] [Server thread/INFO] [FML]: Unloading dimension -1
[17:31:30] [Server thread/INFO] [FML]: Unloading dimension 1
[17:31:30] [Server thread/INFO] [FML]: Applying holder lookups
[17:31:30] [Server thread/INFO] [FML]: Holder lookups applied
[17:31:30] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
[17:31:31] [Client thread/FATAL]: Unreported exception thrown!
java.lang.NullPointerException
at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96) ~[ExtendedBlockStorage.class:?]
at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667) ~[Chunk.class:?]
at net.minecraft.world.World.setBlock(World.java:515) ~[World.class:?]
at net.minecraft.world.World.setBlock(World.java:663) ~[World.class:?]
at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41) ~[ItemSeeds.class:?]
at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146) ~[ItemStack.class:?]
at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:407) ~[PlayerControllerMP.class:?]
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1529) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2044) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
at GradleStart.bounce(GradleStart.java:107) [start/:?]
at GradleStart.startClient(GradleStart.java:100) [start/:?]
at GradleStart.main(GradleStart.java:55) [start/:?]
[17:31:31] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: ---- Minecraft Crash Report ----
// This doesn't make any sense!

Time: 30-9-14 17:31
Description: Unexpected error

java.lang.NullPointerException: Unexpected error
at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96)
at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667)
at net.minecraft.world.World.setBlock(World.java:515)
at net.minecraft.world.World.setBlock(World.java:663)
at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41)
at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146)
at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:407)
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1529)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2044)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039)
at net.minecraft.client.Minecraft.run(Minecraft.java:961)
at net.minecraft.client.main.Main.main(Main.java:164)
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 net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
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 GradleStart.bounce(GradleStart.java:107)
at GradleStart.startClient(GradleStart.java:100)
at GradleStart.main(GradleStart.java:55)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Stacktrace:
at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96)
at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667)
at net.minecraft.world.World.setBlock(World.java:515)
at net.minecraft.world.World.setBlock(World.java:663)
at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41)
at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146)
at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:407)
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1529)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['ForgeDevName'/428, l='MpServer', x=-233,60, y=70,62, z=310,01]]
Chunk stats: MultiplayerChunkCache: 509, 509
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (-188,64,256), Chunk: (at 4,4,0 in -12,16; contains blocks -192,0,256 to -177,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 23823 game time, 23823 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 107 total; [EntityZombie['Zombie'/1361, l='MpServer', x=-291,50, y=50,00, z=244,50], EntityBat['Bat'/262, l='MpServer', x=-183,16, y=25,10, z=246,66], EntityZombie['Zombie'/264, l='MpServer', x=-177,47, y=22,00, z=351,94], EntityBat['Bat'/1105, l='MpServer', x=-233,50, y=54,98, z=350,28], EntitySkeleton['Skeleton'/289, l='MpServer', x=-178,38, y=64,00, z=233,78], EntitySkeleton['Skeleton'/290, l='MpServer', x=-162,53, y=62,17, z=232,88], EntitySheep['Sheep'/292, l='MpServer', x=-160,06, y=100,00, z=323,50], EntitySheep['Sheep'/293, l='MpServer', x=-169,47, y=107,00, z=331,66], EntityZombie['Zombie'/1380, l='MpServer', x=-227,50, y=13,00, z=293,50], EntityZombie['Zombie'/1143, l='MpServer', x=-180,59, y=22,00, z=293,13], EntityZombie['Zombie'/1142, l='MpServer', x=-183,50, y=24,00, z=299,50], EntitySheep['Sheep'/298, l='MpServer', x=-158,53, y=100,00, z=332,81], EntityBat['Bat'/1857, l='MpServer', x=-252,25, y=41,42, z=249,50], EntityCreeper['Creeper'/84, l='MpServer', x=-304,50, y=75,00, z=238,50], EntitySheep['Sheep'/86, l='MpServer', x=-309,88, y=73,00, z=245,06], EntitySheep['Sheep'/81, l='MpServer', x=-312,47, y=78,00, z=235,47], EntitySheep['Sheep'/80, l='MpServer', x=-314,56, y=74,00, z=232,34], EntitySheep['Sheep'/83, l='MpServer', x=-313,56, y=79,00, z=236,34], EntitySpider['Spider'/93, l='MpServer', x=-309,72, y=63,00, z=325,94], EntityEnderman['Enderman'/92, l='MpServer', x=-307,50, y=63,00, z=322,50], EntityZombie['Zombie'/1281, l='MpServer', x=-197,50, y=23,00, z=314,50], EntitySheep['Sheep'/94, l='MpServer', x=-310,13, y=65,00, z=345,22], EntitySheep['Sheep'/89, l='MpServer', x=-312,50, y=63,00, z=324,72], EntityCreeper['Creeper'/102, l='MpServer', x=-289,78, y=68,00, z=373,13], EntitySheep['Sheep'/101, l='MpServer', x=-293,53, y=68,00, z=372,13], EntitySheep['Sheep'/96, l='MpServer', x=-308,03, y=67,00, z=363,88], EntitySheep['Sheep'/119, l='MpServer', x=-276,81, y=68,00, z=356,47], EntitySheep['Sheep'/118, l='MpServer', x=-280,88, y=68,00, z=358,06], EntitySheep['Sheep'/117, l='MpServer', x=-274,50, y=75,00, z=358,50], EntitySkeleton['Skeleton'/116, l='MpServer', x=-272,50, y=67,00, z=329,50], EntityChicken['Chicken'/115, l='MpServer', x=-277,56, y=70,00, z=296,44], EntityCreeper['Creeper'/1086, l='MpServer', x=-187,50, y=23,00, z=304,50], EntityChicken['Chicken'/114, l='MpServer', x=-283,44, y=73,00, z=275,56], EntityZombie['Zombie'/112, l='MpServer', x=-278,50, y=28,00, z=249,50], EntityChicken['Chicken'/127, l='MpServer', x=-262,34, y=74,00, z=277,44], EntityChicken['Chicken'/126, l='MpServer', x=-262,41, y=75,00, z=264,63], EntityWitch['Witch'/841, l='MpServer', x=-244,50, y=67,00, z=356,50], EntityZombie['Zombie'/846, l='MpServer', x=-298,66, y=31,00, z=237,31], EntityZombie['Zombie'/844, l='MpServer', x=-301,50, y=27,00, z=244,50], EntityZombie['Zombie'/845, l='MpServer', x=-297,50, y=28,00, z=246,25], EntitySheep['Sheep'/137, l='MpServer', x=-268,22, y=68,00, z=310,19], EntitySkeleton['Skeleton'/139, l='MpServer', x=-265,88, y=35,00, z=320,56], EntityEnderman['Enderman'/138, l='MpServer', x=-270,50, y=36,00, z=321,50], EntityZombie['Zombie'/141, l='MpServer', x=-270,50, y=51,00, z=320,50], EntityZombie['Zombie'/143, l='MpServer', x=-262,63, y=66,00, z=363,72], EntityCreeper['Creeper'/142, l='MpServer', x=-256,00, y=69,00, z=345,56], EntityChicken['Chicken'/129, l='MpServer', x=-254,38, y=76,00, z=272,63], EntityCreeper['Creeper'/128, l='MpServer', x=-254,84, y=69,00, z=290,13], EntityChicken['Chicken'/131, l='MpServer', x=-267,38, y=72,00, z=288,41], EntitySheep['Sheep'/133, l='MpServer', x=-265,47, y=72,00, z=289,34], EntitySheep['Sheep'/132, l='MpServer', x=-256,50, y=68,00, z=304,69], EntityCreeper['Creeper'/135, l='MpServer', x=-259,47, y=68,00, z=306,00], EntitySheep['Sheep'/134, l='MpServer', x=-250,09, y=69,00, z=296,03], EntityBat['Bat'/703, l='MpServer', x=-256,97, y=43,38, z=247,84], EntityChicken['Chicken'/156, l='MpServer', x=-251,38, y=71,00, z=231,38], EntityChicken['Chicken'/157, l='MpServer', x=-254,38, y=76,00, z=270,59], EntityCreeper['Creeper'/159, l='MpServer', x=-243,50, y=68,00, z=287,66], EntityBat['Bat'/652, l='MpServer', x=-308,47, y=32,64, z=232,25], EntityCreeper['Creeper'/169, l='MpServer', x=-242,00, y=67,00, z=354,31], EntityCreeper['Creeper'/168, l='MpServer', x=-252,97, y=68,00, z=326,41], EntitySkeleton['Skeleton'/172, l='MpServer', x=-251,50, y=60,00, z=375,50], EntityClientPlayerMP['ForgeDevName'/428, l='MpServer', x=-233,60, y=70,62, z=310,01], EntityChicken['Chicken'/163, l='MpServer', x=-244,41, y=69,00, z=293,56], EntityChicken['Chicken'/162, l='MpServer', x=-235,59, y=69,00, z=284,63], EntityBat['Bat'/161, l='MpServer', x=-248,00, y=25,98, z=293,56], EntityCreeper['Creeper'/160, l='MpServer', x=-259,16, y=69,00, z=296,16], EntityEnderman['Enderman'/167, l='MpServer', x=-255,00, y=68,00, z=311,44], EntityEnderman['Enderman'/166, l='MpServer', x=-250,47, y=69,00, z=320,00], EntityZombie['Zombie'/165, l='MpServer', x=-257,13, y=68,00, z=312,72], EntitySkeleton['Skeleton'/897, l='MpServer', x=-200,50, y=24,00, z=332,09], EntitySpider['Spider'/201, l='MpServer', x=-242,78, y=69,00, z=309,50], EntityZombie['Zombie'/200, l='MpServer', x=-230,44, y=69,00, z=324,38], EntityCreeper['Creeper'/203, l='MpServer', x=-236,72, y=61,00, z=358,91], EntityZombie['Zombie'/1980, l='MpServer', x=-224,50, y=16,00, z=277,50], EntityChicken['Chicken'/197, l='MpServer', x=-244,38, y=69,00, z=289,34], EntityCreeper['Creeper'/1981, l='MpServer', x=-225,50, y=16,00, z=278,50], EntityChicken['Chicken'/196, l='MpServer', x=-226,47, y=75,00, z=249,47], EntityChicken['Chicken'/199, l='MpServer', x=-251,44, y=69,00, z=286,47], EntityChicken['Chicken'/198, l='MpServer', x=-236,47, y=69,00, z=315,47], EntityCreeper['Creeper'/1439, l='MpServer', x=-171,50, y=22,00, z=326,50], EntityChicken['Chicken'/195, l='MpServer', x=-238,47, y=69,00, z=254,22], EntityZombie['Zombie'/220, l='MpServer', x=-221,44, y=80,00, z=381,00], EntitySkeleton['Skeleton'/1410, l='MpServer', x=-193,88, y=22,00, z=302,53], EntityZombie['Zombie'/216, l='MpServer', x=-212,16, y=68,00, z=299,50], EntityChicken['Chicken'/218, l='MpServer', x=-228,59, y=70,00, z=322,63], EntityZombie['Zombie'/1412, l='MpServer', x=-195,50, y=22,00, z=309,50], EntityChicken['Chicken'/214, l='MpServer', x=-214,53, y=69,00, z=289,56], EntityChicken['Chicken'/215, l='MpServer', x=-217,78, y=70,00, z=283,81], EntityChicken['Chicken'/239, l='MpServer', x=-194,47, y=68,00, z=295,47], EntityCreeper['Creeper'/238, l='MpServer', x=-209,16, y=70,00, z=268,84], EntityZombie['Zombie'/236, l='MpServer', x=-194,50, y=70,00, z=273,16], EntitySkeleton['Skeleton'/1460, l='MpServer', x=-246,50, y=24,00, z=288,50], EntityCreeper['Creeper'/235, l='MpServer', x=-203,94, y=69,00, z=267,25], EntitySkeleton['Skeleton'/1461, l='MpServer', x=-244,50, y=24,00, z=293,50], EntityCreeper['Creeper'/234, l='MpServer', x=-198,50, y=30,00, z=249,50], EntitySkeleton['Skeleton'/1462, l='MpServer', x=-245,50, y=24,00, z=295,50], EntityBat['Bat'/1189, l='MpServer', x=-265,50, y=42,17, z=236,56], EntityBat['Bat'/1195, l='MpServer', x=-256,31, y=27,00, z=320,53], EntityBat['Bat'/707, l='MpServer', x=-295,94, y=47,01, z=242,56], EntitySkeleton['Skeleton'/972, l='MpServer', x=-214,16, y=68,00, z=304,50], EntitySkeleton['Skeleton'/246, l='MpServer', x=-215,22, y=68,00, z=306,75], EntityEnderman['Enderman'/247, l='MpServer', x=-205,73, y=66,00, z=324,69], EntityCreeper['Creeper'/245, l='MpServer', x=-218,22, y=69,00, z=320,09], EntityBat['Bat'/242, l='MpServer', x=-205,16, y=13,10, z=309,31], EntitySkeleton['Skeleton'/243, l='MpServer', x=-206,50, y=38,00, z=318,50], EntityChicken['Chicken'/240, l='MpServer', x=-193,34, y=77,00, z=290,47], EntityChicken['Chicken'/241, l='MpServer', x=-187,63, y=67,00, z=295,44]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:417)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2568)
at net.minecraft.client.Minecraft.run(Minecraft.java:990)
at net.minecraft.client.main.Main.main(Main.java:164)
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 net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
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 GradleStart.bounce(GradleStart.java:107)
at GradleStart.startClient(GradleStart.java:100)
at GradleStart.main(GradleStart.java:55)

-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 8.1 (amd64) version 6.3
Java Version: 1.7.0_67, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 682683712 bytes (651 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
FML: MCP v9.05 FML v7.10.84.1217 Minecraft Forge 10.13.1.1217 4 mods loaded, 4 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.10.84.1217} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.1.1217.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.13.1.1217} [Minecraft Forge] (forgeSrc-1.7.10-10.13.1.1217.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
basic{1.0.0} [basic] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: Intel(R) HD Graphics 4000 GL version 4.0.0 - Build 10.18.10.3412, Intel
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.

Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: English (US)
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: Off (1)
[17:31:31] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:408]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\pieter-PC\Documents\minecraft2.0\eclipse\.\crash-reports\crash-2014-09-30_17.31.31-client.txt
[17:31:31] [Client thread/INFO] [FML]: Waiting for the server to terminate/save.
[17:31:31] [Client thread/INFO] [FML]: Server terminated.
AL lib: (EE) alc_cleanup: 1 device not closed
1
09/30/2014 5:08 pm
Level 30 : Artisan Dragonborn
funny bunny
funny bunny's Avatar
Thanks for putting the crash report in the code form <3

Do you have any mods installed like forge? That may be the problem
1
09/30/2014 4:23 pm
Level 33 : Artisan Engineer
RoboShadow
RoboShadow's Avatar
#reinstall
1
09/30/2014 3:13 pm
Level 52 : Grandmaster Programmer
kristinnvikar
kristinnvikar's Avatar
Crash Report*
1
09/30/2014 3:07 pm
Level 52 : Grandmaster Programmer
kristinnvikar
kristinnvikar's Avatar
can we have the error too?
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome