Jump to content

[1.7.10] Random Crash report?


BoonieQuafter-CrAfTeR

Recommended Posts

so im making a wand item, as some of you might know, while I was in game about fifteen minutes into testing different properties of my mod I suddenly get this crash report, about adding info on my wand item.. its so weird because ive never had this problem before.

 

Item Class:

package com.OlympiansMod.Item;

import java.util.List;

import com.OlympiansMod.entity.SlownessSpell;
import com.OlympiansMod.entity.SpellBombardo;
import com.OlympiansMod.entity.SpellChicken;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumAction;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.IIcon;
import net.minecraft.world.World;

public class RandomWand extends Item{
private int Cooldown = 0;

public ItemStack onItemRightClick(ItemStack itemstack, World world,
		EntityPlayer player) {
	if (!world.isRemote) {
        itemstack.damageItem(1, player);
	 if (itemstack.getTagCompound() == null)
        {
      if(itemstack.hasTagCompound() == false){
	 itemstack.stackTagCompound = new NBTTagCompound();
	 itemstack.stackTagCompound.setInteger("Spell", 0);
        }
        }
        int spell = itemstack.stackTagCompound.getInteger("Spell");

		if (player.isSneaking()) {
			if (spell == 0) {
				itemstack.stackTagCompound.setInteger("Spell", 1);
				player.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY +
						"Slowness Spell"));
			}
			if(spell == 1){
				itemstack.stackTagCompound.setInteger("Spell", 2);
				player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED +
						"Explosive Spell"));
			}
			if(spell == 2){
				itemstack.stackTagCompound.setInteger("Spell", 3);
				player.addChatMessage(new ChatComponentText(EnumChatFormatting.WHITE +
						"Chicken Spell"));
			}
			if(spell == 3){
				itemstack.stackTagCompound.setInteger("Spell", 4);
				player.addChatMessage(new ChatComponentText(EnumChatFormatting.LIGHT_PURPLE +
						"Healing Spell"));

			}
			if(spell == 4){
				itemstack.stackTagCompound.setInteger("Spell", 0);
				player.addChatMessage(new ChatComponentText(EnumChatFormatting.BOLD +
						"Wand"));
		}
		}
		if (player.isSneaking()) {
		}else{
		if(Cooldown <= 0 && spell == 1) {
				player.playSound("fireworks.launch", 1.0f, 1.0f);
				world.spawnEntityInWorld(new SlownessSpell(world, player));
				Cooldown = 50;
		} else if(player.experienceLevel < 1){
					Cooldown = 10;

		}
		if(Cooldown <= 0 && spell == 2) {

				player.playSound("fireworks.launch", 1.0f, 1.0f);
				world.spawnEntityInWorld(new SpellBombardo(world, player));
				player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED +
						"Bombarda!"));
				Cooldown = 65;
		}
		if(Cooldown <= 0 && spell == 3) {

			player.playSound("fireworks.launch", 1.0f, 1.0f);
			world.spawnEntityInWorld(new SpellChicken(world, player));

			Cooldown = 50;
	}
		if(Cooldown <= 0 && spell == 4) {

			player.playSound("fireworks.launch", 1.0f, 1.0f);
			player.heal(3.0f);
			Cooldown = 100;
	}
		}



	}
	return itemstack;
}

public void onUpdate(ItemStack par1ItemStack, World par2World, Entity par3Entity, int par4, boolean par5) {
	 if(Cooldown >=1){
		 Cooldown--;
	 }
	 else if(Cooldown <= 0){
		 Cooldown = 0;
	 }
 }



public boolean isFull3D() {
	return true;
}
public void addInformation(ItemStack stack, EntityPlayer player, List list,
		boolean i) {
        int spell = stack.stackTagCompound.getInteger("Spell");

	list.add(EnumChatFormatting.BOLD + "Wand");
	list.add("      ");
	if(spell == 1) {
	list.add(EnumChatFormatting.GRAY + "Slowness Spell");
	}
	if(spell == 2) {
	list.add(EnumChatFormatting.RED + "Explosive Spell");
	}
	if(spell == 3) {
	list.add(EnumChatFormatting.WHITE + "Chicken Spell");
	}
	if(spell == 4) {
		list.add(EnumChatFormatting.LIGHT_PURPLE + "Healing Spell");
	}
	if(spell == 0) {
		list.add(EnumChatFormatting.WHITE + "    ");
		}
}
}

 

Crash report:

[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/739, l='LuckyEgg Test', x=-579.46, y=64.00, z=302.44] (at -37, 18 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/740, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/741, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/742, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/743, l='LuckyEgg Test', x=-579.46, y=64.00, z=302.44] (at -37, 18 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/745, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/746, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/747, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/748, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/749, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.dumpStack(Unknown Source)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.world.WorldServer.tick(WorldServer.java:169)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
[21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
[21:22:41] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4723ms behind, skipping 94 tick(s)
[21:22:44] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none
[21:22:51] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none
[21:22:51] [server thread/INFO]: Player10 has just earned the achievement [Taking Inventory]
[21:22:51] [Client thread/INFO]: [CHAT] Player10 has just earned the achievement [Taking Inventory]
[21:22:54] [server thread/INFO]: [Player10: Set own game mode to Creative Mode]
[21:22:54] [Client thread/INFO]: [CHAT] Your game mode has been updated
[21:22:56] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none
[21:23:06] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none
[21:23:09] [server thread/INFO]: Stopping server
[21:23:09] [server thread/INFO]: Saving players
[21:23:09] [server thread/INFO]: Saving worlds
[21:23:09] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/Overworld
[21:23:09] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/Nether
[21:23:09] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/The End
[21:23:11] [server thread/INFO] [FML]: Unloading dimension 0
[21:23:11] [server thread/INFO] [FML]: Unloading dimension -1
[21:23:11] [server thread/INFO] [FML]: Unloading dimension 1
[21:23:11] [server thread/INFO] [FML]: Applying holder lookups
[21:23:11] [server thread/INFO] [FML]: Holder lookups applied
[21:23:12] [Client thread/FATAL]: Reported exception thrown!
net.minecraft.util.ReportedException: Rendering screen
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1168) ~[EntityRenderer.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1057) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45]
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 net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
at GradleStart.main(GradleStart.java:45) [start/:?]
Caused by: java.lang.NullPointerException
at com.OlympiansMod.Item.RandomWand.addInformation(RandomWand.java:121) ~[RandomWand.class:?]
at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:641) ~[itemStack.class:?]
at net.minecraft.client.gui.GuiScreen.renderToolTip(GuiScreen.java:124) ~[GuiScreen.class:?]
at net.minecraft.client.gui.inventory.GuiContainerCreative.renderToolTip(GuiContainerCreative.java:769) ~[GuiContainerCreative.class:?]
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:186) ~[GuiContainer.class:?]
at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) ~[inventoryEffectRenderer.class:?]
at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) ~[GuiContainerCreative.class:?]
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) ~[EntityRenderer.class:?]
... 11 more
[21:23:12] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----
// Daisy, daisy...

Time: 8/14/15 9:23 PM
Description: Rendering screen

java.lang.NullPointerException: Rendering screen
at com.OlympiansMod.Item.RandomWand.addInformation(RandomWand.java:121)
at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:641)
at net.minecraft.client.gui.GuiScreen.renderToolTip(GuiScreen.java:124)
at net.minecraft.client.gui.inventory.GuiContainerCreative.renderToolTip(GuiContainerCreative.java:769)
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:186)
at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44)
at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1057)
at net.minecraft.client.Minecraft.run(Minecraft.java:951)
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 net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
at GradleStart.main(GradleStart.java:45)


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

-- Head --
Stacktrace:
at com.OlympiansMod.Item.RandomWand.addInformation(RandomWand.java:121)
at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:641)
at net.minecraft.client.gui.GuiScreen.renderToolTip(GuiScreen.java:124)
at net.minecraft.client.gui.inventory.GuiContainerCreative.renderToolTip(GuiContainerCreative.java:769)
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:186)
at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44)
at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673)

-- Screen render details --
Details:
Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative
Mouse location: Scaled: (255, 132). Absolute: (510, 215)
Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player10'/459, l='MpServer', x=-569.62, y=67.62, z=283.63]]
Chunk stats: MultiplayerChunkCache: 49, 49
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (-192,64,222), Chunk: (at 0,4,14 in -12,13; contains blocks -192,0,208 to -177,255,223), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 301070 game time, 11759 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: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 328 total; [EntityVillager['Villager'/1536, l='MpServer', x=-594.47, y=66.00, z=265.52], EntityClientPlayerMP['Player10'/459, l='MpServer', x=-569.62, y=67.62, z=283.63], EntityItem['item.tile.dirt.default'/1040, l='MpServer', x=-576.34, y=62.13, z=296.13], EntityChicken['Chicken'/1041, l='MpServer', x=-584.78, y=62.48, z=305.30], EntityItem['item.tile.dirt.default'/1042, l='MpServer', x=-580.47, y=63.13, z=298.88], EntityItem['item.tile.dirt.default'/1043, l='MpServer', x=-578.75, y=62.13, z=297.38], EntityItem['item.tile.dirt.default'/1044, l='MpServer', x=-578.66, y=63.13, z=298.22], EntityItem['item.item.egg'/1045, l='MpServer', x=-581.81, y=62.13, z=303.16], EntityChicken['Chicken'/1046, l='MpServer', x=-578.16, y=62.18, z=305.47], EntityChicken['Chicken'/1047, l='MpServer', x=-578.60, y=63.85, z=299.49], EntityChicken['Chicken'/1048, l='MpServer', x=-581.84, y=61.80, z=296.84], EntityChicken['Chicken'/1049, l='MpServer', x=-581.84, y=62.17, z=296.16], EntityChicken['Chicken'/1050, l='MpServer', x=-570.17, y=64.18, z=302.49], EntityChicken['Chicken'/1571, l='MpServer', x=-623.44, y=71.00, z=268.47], EntitySheep['Sheep'/1060, l='MpServer', x=-530.88, y=79.00, z=257.53], EntityVillager['Villager'/1061, l='MpServer', x=-534.34, y=75.00, z=268.63], EntityCow['Cow'/1062, l='MpServer', x=-543.63, y=75.00, z=276.66], EntityChicken['Chicken'/1063, l='MpServer', x=-538.56, y=74.00, z=279.56], EntityChicken['Chicken'/1064, l='MpServer', x=-537.63, y=73.00, z=277.44], EntityChicken['Chicken'/1066, l='MpServer', x=-549.47, y=72.00, z=274.53], EntityChicken['Chicken'/1067, l='MpServer', x=-551.47, y=75.00, z=273.56], EntityChicken['Chicken'/1070, l='MpServer', x=-538.34, y=77.00, z=260.63], EntityItem['item.item.egg'/1071, l='MpServer', x=-547.28, y=73.13, z=263.88], EntityChicken['Chicken'/1072, l='MpServer', x=-545.44, y=75.00, z=259.56], EntityHorse['Horse'/1073, l='MpServer', x=-544.81, y=72.00, z=271.03], EntitySheep['Sheep'/563, l='MpServer', x=-579.47, y=68.00, z=227.63], EntityVillager['Villager'/564, l='MpServer', x=-571.31, y=70.00, z=226.69], EntityItem['item.item.egg'/566, l='MpServer', x=-571.91, y=69.13, z=270.81], EntityHorse['Horse'/567, l='MpServer', x=-560.28, y=72.05, z=260.51], EntityChicken['Chicken'/568, l='MpServer', x=-571.44, y=71.00, z=256.59], EntityChicken['Chicken'/569, l='MpServer', x=-570.53, y=71.00, z=268.47], EntityItem['item.item.chickenRaw'/570, l='MpServer', x=-579.72, y=62.13, z=284.38], EntityItem['item.item.feather'/571, l='MpServer', x=-584.69, y=61.13, z=286.56], EntityItem['item.item.chickenRaw'/572, l='MpServer', x=-584.88, y=61.13, z=285.34], EntityItem['item.item.egg'/573, l='MpServer', x=-583.13, y=63.13, z=273.03], EntityChicken['Chicken'/1085, l='MpServer', x=-619.44, y=68.00, z=236.56], EntityItem['item.tile.stonebrick'/574, l='MpServer', x=-586.03, y=60.13, z=280.25], EntityChicken['Chicken'/1086, l='MpServer', x=-608.28, y=69.00, z=243.56], EntityChicken['Chicken'/1087, l='MpServer', x=-619.56, y=70.00, z=253.56], EntityItem['item.item.egg'/1088, l='MpServer', x=-547.91, y=71.13, z=302.97], EntityChicken['Chicken'/579, l='MpServer', x=-585.69, y=59.99, z=279.65], EntityChicken['Chicken'/580, l='MpServer', x=-585.19, y=60.00, z=280.91], EntityChicken['Chicken'/581, l='MpServer', x=-585.08, y=59.00, z=279.92], EntityChicken['Chicken'/582, l='MpServer', x=-581.72, y=64.00, z=274.41], EntityItem['item.item.egg'/583, l='MpServer', x=-588.03, y=64.13, z=287.75], EntityChicken['Chicken'/586, l='MpServer', x=-537.56, y=73.00, z=314.59], EntityChicken['Chicken'/587, l='MpServer', x=-541.53, y=79.00, z=311.63], EntityChicken['Chicken'/588, l='MpServer', x=-534.53, y=71.00, z=317.59], EntityItem['item.item.egg'/589, l='MpServer', x=-540.91, y=79.13, z=312.63], EntityItem['item.item.egg'/590, l='MpServer', x=-541.56, y=79.13, z=316.75], EntityChicken['Chicken'/591, l='MpServer', x=-537.31, y=72.00, z=304.47], EntityChicken['Chicken'/593, l='MpServer', x=-559.31, y=69.00, z=332.53], EntityChicken['Chicken'/594, l='MpServer', x=-564.72, y=62.06, z=342.47], EntityChicken['Chicken'/595, l='MpServer', x=-526.59, y=69.00, z=318.59], EntityHorse['Horse'/596, l='MpServer', x=-538.34, y=76.00, z=332.50], EntityVillager['Villager'/598, l='MpServer', x=-555.88, y=71.00, z=309.09], EntityChicken['Chicken'/599, l='MpServer', x=-546.56, y=75.00, z=311.53], EntityChicken['Chicken'/600, l='MpServer', x=-545.38, y=83.00, z=316.56], EntityChicken['Chicken'/604, l='MpServer', x=-614.53, y=69.13, z=335.16], EntityChicken['Chicken'/605, l='MpServer', x=-619.63, y=68.00, z=321.63], EntityChicken['Chicken'/606, l='MpServer', x=-617.31, y=68.00, z=322.69], EntityChicken['Chicken'/607, l='MpServer', x=-621.44, y=70.00, z=328.94], EntitySheep['Sheep'/608, l='MpServer', x=-622.13, y=69.00, z=323.78], EntityItem['item.item.egg'/609, l='MpServer', x=-617.69, y=68.13, z=324.41], EntityItem['item.item.egg'/610, l='MpServer', x=-613.97, y=68.13, z=324.28], EntityItem['item.item.egg'/611, l='MpServer', x=-608.06, y=69.13, z=331.88], EntityVillager['Villager'/612, l='MpServer', x=-617.28, y=70.00, z=329.75], EntityVillager['Villager'/613, l='MpServer', x=-617.97, y=68.00, z=321.53], EntityChicken['Chicken'/614, l='MpServer', x=-623.53, y=71.00, z=333.53], EntityChicken['Chicken'/615, l='MpServer', x=-609.53, y=67.00, z=326.66], EntityChicken['Chicken'/616, l='MpServer', x=-614.53, y=70.00, z=330.53], EntityChicken['Chicken'/617, l='MpServer', x=-611.44, y=66.00, z=320.53], EntityItem['item.tile.dirt.default'/734, l='MpServer', x=-575.84, y=61.13, z=296.88], EntityHorse['Horse'/735, l='MpServer', x=-568.53, y=63.82, z=301.28], EntityIronGolem['Iron Golem'/736, l='MpServer', x=-573.00, y=67.00, z=295.59], EntityChicken['Chicken'/737, l='MpServer', x=-584.41, y=64.00, z=303.41], EntityChicken['Chicken'/738, l='MpServer', x=-578.31, y=64.00, z=301.84], EntityChicken['Chicken'/739, l='MpServer', x=-585.84, y=63.30, z=308.14], EntityChicken['Chicken'/740, l='MpServer', x=-559.35, y=61.38, z=286.82], EntityChicken['Chicken'/741, l='MpServer', x=-557.41, y=65.00, z=276.66], EntityChicken['Chicken'/742, l='MpServer', x=-563.16, y=63.80, z=285.41], EntityChicken['Chicken'/743, l='MpServer', x=-579.81, y=64.00, z=302.13], EntityChicken['Chicken'/744, l='MpServer', x=-570.53, y=66.00, z=287.44], EntityChicken['Chicken'/745, l='MpServer', x=-569.46, y=66.03, z=282.43], EntityChicken['Chicken'/746, l='MpServer', x=-578.38, y=64.00, z=279.63], EntityChicken['Chicken'/747, l='MpServer', x=-554.34, y=66.00, z=288.63], EntityChicken['Chicken'/748, l='MpServer', x=-560.53, y=64.00, z=277.47], EntityChicken['Chicken'/749, l='MpServer', x=-567.78, y=65.00, z=287.53], EntityItem['item.item.egg'/750, l='MpServer', x=-569.44, y=62.13, z=317.06], EntityItem['item.tile.dirt.default'/751, l='MpServer', x=-565.13, y=63.13, z=314.03], EntityItem['item.tile.dirt.default'/752, l='MpServer', x=-568.69, y=63.13, z=314.59], EntityItem['item.tile.dirt.default'/753, l='MpServer', x=-569.06, y=63.13, z=311.75], EntityItem['item.tile.dirt.default'/754, l='MpServer', x=-565.13, y=63.13, z=313.13], EntityItem['item.tile.dirt.default'/755, l='MpServer', x=-566.13, y=63.13, z=312.75], EntityItem['item.tile.log.oak'/756, l='MpServer', x=-565.88, y=63.13, z=313.94], EntityItem['item.tile.log.oak'/757, l='MpServer', x=-567.47, y=63.13, z=313.72], EntityItem['item.tile.dirt.default'/758, l='MpServer', x=-567.13, y=63.13, z=307.16], EntityItem['item.tile.dirt.default'/759, l='MpServer', x=-568.72, y=63.13, z=308.47], EntityItem['item.item.feather'/760, l='MpServer', x=-568.97, y=62.13, z=316.63], EntityItem['item.item.chickenRaw'/761, l='MpServer', x=-568.88, y=63.13, z=314.84], EntityItem['item.tile.dirt.default'/762, l='MpServer', x=-567.22, y=62.13, z=317.88], EntityItem['item.tile.dirt.default'/763, l='MpServer', x=-568.19, y=62.13, z=317.09], EntityItem['item.tile.dirt.default'/764, l='MpServer', x=-566.50, y=62.13, z=315.75], EntityItem['item.tile.dirt.default'/765, l='MpServer', x=-568.81, y=62.13, z=315.47], EntityItem['item.tile.dirt.default'/766, l='MpServer', x=-567.88, y=62.13, z=314.75], EntityItem['item.tile.dirt.default'/767, l='MpServer', x=-565.72, y=62.13, z=316.47], EntityItem['item.tile.dirt.default'/768, l='MpServer', x=-565.69, y=63.13, z=318.88], EntityItem['item.tile.dirt.default'/769, l='MpServer', x=-565.59, y=63.13, z=314.91], EntityItem['item.tile.dirt.default'/770, l='MpServer', x=-566.91, y=63.13, z=318.28], EntityItem['item.tile.dirt.default'/771, l='MpServer', x=-568.13, y=63.13, z=318.63], EntityItem['item.item.feather'/772, l='MpServer', x=-566.25, y=62.13, z=316.22], EntityChicken['Chicken'/773, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/774, l='MpServer', x=-566.13, y=63.00, z=318.13], EntityChicken['Chicken'/775, l='MpServer', x=-566.03, y=62.00, z=317.22], EntityItem['item.item.chickenRaw'/776, l='MpServer', x=-568.38, y=63.13, z=312.75], EntityChicken['Chicken'/777, l='MpServer', x=-565.34, y=63.00, z=318.44], EntityItem['item.tile.dirt.default'/778, l='MpServer', x=-566.16, y=64.13, z=310.13], EntityItem['item.tile.dirt.default'/779, l='MpServer', x=-566.13, y=64.13, z=312.09], EntityItem['item.tile.dirt.default'/780, l='MpServer', x=-567.47, y=64.13, z=311.63], EntityItem['item.tile.dirt.default'/781, l='MpServer', x=-567.78, y=64.13, z=310.84], EntityItem['item.item.feather'/782, l='MpServer', x=-568.53, y=64.13, z=310.44], EntityItem['item.item.chickenRaw'/783, l='MpServer', x=-566.19, y=64.13, z=308.16], EntityItem['item.tile.dirt.default'/784, l='MpServer', x=-567.88, y=64.13, z=306.13], EntityItem['item.tile.dirt.default'/785, l='MpServer', x=-566.81, y=64.13, z=308.84], EntityItem['item.tile.dirt.default'/786, l='MpServer', x=-569.41, y=64.13, z=307.06], EntityItem['item.tile.dirt.default'/787, l='MpServer', x=-566.88, y=64.13, z=306.13], EntityItem['item.tile.dirt.default'/788, l='MpServer', x=-568.03, y=64.13, z=309.16], EntityItem['item.tile.dirt.default'/789, l='MpServer', x=-565.69, y=64.13, z=307.63], EntityItem['item.tile.dirt.default'/790, l='MpServer', x=-566.72, y=64.13, z=319.22], EntityItem['item.tile.dirt.default'/791, l='MpServer', x=-564.75, y=64.13, z=318.34], EntityItem['item.item.chickenRaw'/792, l='MpServer', x=-564.13, y=64.13, z=314.59], EntityChicken['Chicken'/793, l='MpServer', x=-565.81, y=62.00, z=315.63], EntityChicken['Chicken'/794, l='MpServer', x=-567.59, y=67.00, z=320.38], EntityChicken['Chicken'/795, l='MpServer', x=-565.16, y=62.00, z=315.53], EntityChicken['Chicken'/796, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityItem['item.item.feather'/797, l='MpServer', x=-564.13, y=68.13, z=318.19], EntityChicken['Chicken'/798, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/799, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/800, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/801, l='MpServer', x=-564.75, y=62.00, z=316.69], EntityChicken['Chicken'/802, l='MpServer', x=-583.16, y=62.39, z=312.66], EntityChicken['Chicken'/803, l='MpServer', x=-583.47, y=62.21, z=313.84], EntityChicken['Chicken'/804, l='MpServer', x=-586.81, y=62.52, z=313.84], EntityChicken['Chicken'/805, l='MpServer', x=-587.47, y=62.03, z=312.84], EntityChicken['Chicken'/806, l='MpServer', x=-586.84, y=62.25, z=312.91], EntityItem['item.item.egg'/807, l='MpServer', x=-585.88, y=62.13, z=307.81], EntityItem['item.item.egg'/808, l='MpServer', x=-587.88, y=62.13, z=312.50], EntityItem['item.item.egg'/809, l='MpServer', x=-583.63, y=62.13, z=312.78], EntityItem['item.item.egg'/810, l='MpServer', x=-583.13, y=62.13, z=313.88], EntityChicken['Chicken'/811, l='MpServer', x=-601.44, y=62.49, z=315.41], EntityCow['Cow'/812, l='MpServer', x=-590.31, y=64.00, z=314.53], EntityItem['item.item.egg'/813, l='MpServer', x=-618.28, y=72.13, z=268.69], EntityItem['item.item.egg'/815, l='MpServer', x=-621.13, y=71.13, z=268.19], EntityItem['item.item.egg'/816, l='MpServer', x=-618.88, y=71.13, z=262.72], EntityItem['item.item.egg'/817, l='MpServer', x=-608.88, y=70.13, z=259.19], EntityChicken['Chicken'/818, l='MpServer', x=-611.44, y=70.00, z=266.59], EntityChicken['Chicken'/819, l='MpServer', x=-623.34, y=68.00, z=270.47], EntityHorse['Horse'/820, l='MpServer', x=-618.59, y=63.00, z=283.72], EntityChicken['Chicken'/821, l='MpServer', x=-621.63, y=64.00, z=276.72], EntityItem['item.item.egg'/822, l='MpServer', x=-621.59, y=64.13, z=274.13], EntityChicken['Chicken'/823, l='MpServer', x=-621.41, y=64.00, z=277.28], EntityChicken['Chicken'/824, l='MpServer', x=-628.44, y=61.06, z=274.53], EntityChicken['Chicken'/825, l='MpServer', x=-629.56, y=62.24, z=283.53], EntityChicken['Chicken'/826, l='MpServer', x=-621.47, y=64.00, z=275.97], EntitySheep['Sheep'/847, l='MpServer', x=-583.16, y=69.00, z=232.16], EntityMooshroom['Mooshroom'/851, l='MpServer', x=-517.06, y=69.00, z=313.03], EntityPig['Pig'/852, l='MpServer', x=-516.03, y=69.00, z=310.47], EntityIronGolem['Iron Golem'/853, l='MpServer', x=-513.06, y=68.00, z=319.94], EntityCreeper['Creeper'/855, l='MpServer', x=-520.00, y=30.00, z=334.44], EntityIronGolem['Iron Golem'/856, l='MpServer', x=-513.28, y=66.00, z=329.41], EntityItem['item.item.egg'/862, l='MpServer', x=-541.13, y=78.13, z=288.06], EntityChicken['Chicken'/892, l='MpServer', x=-579.28, y=62.40, z=325.31], EntityChicken['Chicken'/893, l='MpServer', x=-588.47, y=61.65, z=329.44], EntityChicken['Chicken'/894, l='MpServer', x=-580.63, y=62.35, z=328.66], EntityChicken['Chicken'/895, l='MpServer', x=-580.44, y=66.06, z=342.41], EntityChicken['Chicken'/896, l='MpServer', x=-587.41, y=62.38, z=332.41], EntityChicken['Chicken'/897, l='MpServer', x=-584.09, y=63.00, z=334.84], EntityChicken['Chicken'/898, l='MpServer', x=-585.09, y=62.49, z=321.97], EntityChicken['Chicken'/899, l='MpServer', x=-581.41, y=62.19, z=324.75], EntityItem['item.item.egg'/900, l='MpServer', x=-580.84, y=59.13, z=328.78], EntityItem['item.item.egg'/901, l='MpServer', x=-579.41, y=59.13, z=324.81], EntityItem['item.item.egg'/902, l='MpServer', x=-582.09, y=61.13, z=333.13], EntityItem['item.item.egg'/903, l='MpServer', x=-576.13, y=60.13, z=330.06], EntityItem['item.item.egg'/904, l='MpServer', x=-587.47, y=60.13, z=330.25], EntityChicken['Chicken'/905, l='MpServer', x=-586.94, y=63.00, z=333.84], EntityItem['item.item.egg'/906, l='MpServer', x=-580.28, y=59.13, z=324.59], EntityChicken['Chicken'/907, l='MpServer', x=-579.56, y=62.34, z=322.56], EntityChicken['Chicken'/908, l='MpServer', x=-576.38, y=61.75, z=335.56], EntityChicken['Chicken'/909, l='MpServer', x=-574.56, y=62.23, z=324.56], EntityCow['Cow'/910, l='MpServer', x=-589.69, y=63.00, z=319.47], EntityChicken['Chicken'/911, l='MpServer', x=-576.34, y=61.76, z=333.81], EntityChicken['Chicken'/912, l='MpServer', x=-579.15, y=61.00, z=317.15], EntityChicken['Chicken'/913, l='MpServer', x=-589.56, y=67.00, z=335.53], EntityChicken['Chicken'/914, l='MpServer', x=-583.94, y=65.00, z=335.03], EntityItem['item.item.egg'/915, l='MpServer', x=-591.09, y=64.13, z=332.41], EntityChicken['Chicken'/916, l='MpServer', x=-590.41, y=67.00, z=335.38], EntityChicken['Chicken'/917, l='MpServer', x=-575.41, y=62.36, z=322.22], EntityChicken['Chicken'/918, l='MpServer', x=-571.16, y=62.50, z=332.53], EntityChicken['Chicken'/919, l='MpServer', x=-582.47, y=62.39, z=331.63], EntityItem['item.item.egg'/920, l='MpServer', x=-574.34, y=62.13, z=322.16], EntityItem['item.item.egg'/921, l='MpServer', x=-571.13, y=62.13, z=331.63], EntityHorse['Horse'/1433, l='MpServer', x=-544.97, y=72.00, z=243.34], EntityChicken['Chicken'/922, l='MpServer', x=-571.16, y=62.40, z=330.44], EntityChicken['Chicken'/1434, l='MpServer', x=-559.47, y=74.00, z=246.31], EntityChicken['Chicken'/923, l='MpServer', x=-570.34, y=63.00, z=310.53], EntityChicken['Chicken'/1435, l='MpServer', x=-542.56, y=73.00, z=249.56], EntityChicken['Chicken'/924, l='MpServer', x=-571.88, y=62.34, z=326.41], EntitySheep['Sheep'/1436, l='MpServer', x=-544.91, y=75.00, z=245.53], EntityChicken['Chicken'/925, l='MpServer', x=-571.16, y=62.36, z=333.53], EntityChicken['Chicken'/926, l='MpServer', x=-568.53, y=67.00, z=333.16], EntityChicken['Chicken'/927, l='MpServer', x=-568.53, y=67.00, z=333.78], EntityChicken['Chicken'/928, l='MpServer', x=-570.38, y=65.00, z=328.59], EntitySheep['Sheep'/929, l='MpServer', x=-547.91, y=71.00, z=237.03], EntityChicken['Chicken'/930, l='MpServer', x=-544.47, y=71.00, z=232.56], EntityChicken['Chicken'/1449, l='MpServer', x=-543.44, y=76.00, z=251.88], EntityItem['item.item.egg'/1450, l='MpServer', x=-543.88, y=71.13, z=241.16], EntityCow['Cow'/1451, l='MpServer', x=-541.56, y=79.00, z=253.25], EntityChicken['Chicken'/1452, l='MpServer', x=-547.59, y=81.00, z=247.34], EntityItem['item.tile.dirt.default'/945, l='MpServer', x=-598.13, y=63.13, z=301.81], EntityItem['item.tile.dirt.default'/946, l='MpServer', x=-600.06, y=63.13, z=301.34], EntityChicken['Chicken'/947, l='MpServer', x=-606.94, y=63.00, z=293.06], EntityChicken['Chicken'/948, l='MpServer', x=-604.56, y=64.00, z=290.47], EntityChicken['Chicken'/949, l='MpServer', x=-598.88, y=64.00, z=292.91], EntityChicken['Chicken'/950, l='MpServer', x=-593.16, y=63.26, z=316.16], EntityChicken['Chicken'/951, l='MpServer', x=-593.16, y=62.56, z=316.91], EntityChicken['Chicken'/952, l='MpServer', x=-604.44, y=62.49, z=305.56], EntityItem['item.item.egg'/953, l='MpServer', x=-600.97, y=58.13, z=315.53], EntityItem['item.item.egg'/954, l='MpServer', x=-593.13, y=62.13, z=315.38], EntityVillager['Villager'/955, l='MpServer', x=-593.30, y=62.04, z=315.31], EntityChicken['Chicken'/956, l='MpServer', x=-595.53, y=64.00, z=305.47], EntityItem['item.item.egg'/957, l='MpServer', x=-609.63, y=61.13, z=308.34], EntityItem['item.item.egg'/958, l='MpServer', x=-623.00, y=63.13, z=306.84], EntityItem['item.item.egg'/959, l='MpServer', x=-609.88, y=62.13, z=310.88], EntityItem['item.tile.dirt.default'/960, l='MpServer', x=-614.34, y=63.13, z=310.13], EntityItem['item.tile.dirt.default'/961, l='MpServer', x=-615.31, y=63.13, z=308.69], EntityItem['item.tile.dirt.default'/962, l='MpServer', x=-616.91, y=63.13, z=310.34], EntityItem['item.tile.dirt.default'/963, l='MpServer', x=-617.88, y=63.13, z=308.59], EntityItem['item.tile.dirt.default'/964, l='MpServer', x=-614.72, y=63.13, z=311.88], EntityItem['item.tile.dirt.default'/965, l='MpServer', x=-616.69, y=63.13, z=307.56], EntityItem['item.item.egg'/1477, l='MpServer', x=-594.13, y=64.13, z=268.84], EntityItem['item.item.seeds'/966, l='MpServer', x=-613.38, y=63.13, z=310.84], EntityItem['item.tile.flower1.dandelion'/967, l='MpServer', x=-617.09, y=63.13, z=309.34], EntityChicken['Chicken'/968, l='MpServer', x=-623.47, y=63.40, z=311.44], EntityVillager['Villager'/969, l='MpServer', x=-616.69, y=63.00, z=311.69], EntityChicken['Chicken'/970, l='MpServer', x=-615.97, y=63.00, z=310.97], EntityItem['item.item.egg'/971, l='MpServer', x=-623.91, y=63.13, z=314.88], EntityVillager['Villager'/972, l='MpServer', x=-615.84, y=63.00, z=304.47], EntityChicken['Chicken'/460, l='MpServer', x=-552.85, y=66.03, z=290.47], EntityChicken['Chicken'/973, l='MpServer', x=-620.41, y=64.00, z=317.25], EntityHorse['Horse'/461, l='MpServer', x=-576.09, y=65.00, z=283.00], EntityChicken['Chicken'/974, l='MpServer', x=-609.56, y=64.00, z=315.59], EntityChicken['Chicken'/462, l='MpServer', x=-571.81, y=66.00, z=276.47], EntityItem['item.item.egg'/975, l='MpServer', x=-613.88, y=66.13, z=319.22], EntityChicken['Chicken'/463, l='MpServer', x=-580.38, y=62.37, z=288.41], EntityItem['item.item.egg'/976, l='MpServer', x=-618.63, y=64.13, z=305.84], EntityChicken['Chicken'/465, l='MpServer', x=-611.53, y=69.00, z=236.59], EntityItem['item.item.egg'/977, l='MpServer', x=-617.66, y=64.13, z=316.28], EntityItem['item.tile.dirt.default'/978, l='MpServer', x=-620.25, y=65.13, z=315.09], EntityItem['item.tile.flower1.dandelion'/979, l='MpServer', x=-619.16, y=64.13, z=314.44], EntityItem['item.tile.dirt.default'/980, l='MpServer', x=-620.03, y=65.13, z=318.88], EntitySheep['Sheep'/1492, l='MpServer', x=-594.19, y=67.00, z=240.91], EntityItem['item.item.seeds'/981, l='MpServer', x=-618.34, y=66.13, z=318.03], EntityVillager['Villager'/1493, l='MpServer', x=-600.47, y=67.00, z=241.97], EntityItem['item.tile.dirt.default'/982, l='MpServer', x=-622.28, y=65.13, z=317.41], EntityItem['item.item.egg'/1494, l='MpServer', x=-606.50, y=69.13, z=245.06], EntityItem['item.tile.dirt.default'/983, l='MpServer', x=-620.50, y=64.13, z=317.50], EntityChicken['Chicken'/1495, l='MpServer', x=-597.53, y=69.00, z=252.53], EntityChicken['Chicken'/472, l='MpServer', x=-593.56, y=62.21, z=325.56], EntityItem['item.tile.dirt.default'/984, l='MpServer', x=-621.03, y=65.13, z=316.28], EntityChicken['Chicken'/1496, l='MpServer', x=-603.56, y=68.00, z=247.56], EntityItem['item.item.egg'/473, l='MpServer', x=-593.13, y=63.13, z=330.00], EntityItem['item.tile.dirt.default'/985, l='MpServer', x=-621.81, y=65.13, z=318.88], EntityChicken['Chicken'/1497, l='MpServer', x=-601.06, y=69.00, z=252.16], EntityChicken['Chicken'/474, l='MpServer', x=-597.56, y=61.54, z=321.56], EntityItem['item.tile.dirt.default'/986, l='MpServer', x=-620.81, y=65.13, z=318.88], EntityChicken['Chicken'/1498, l='MpServer', x=-598.34, y=68.00, z=256.44], EntityChicken['Chicken'/475, l='MpServer', x=-588.47, y=64.00, z=317.53], EntityItem['item.tile.dirt.default'/987, l='MpServer', x=-620.84, y=64.13, z=316.13], EntityChicken['Chicken'/1499, l='MpServer', x=-601.84, y=69.00, z=253.38], EntityChicken['Chicken'/476, l='MpServer', x=-599.72, y=62.15, z=323.56], EntityItem['item.tile.doublePlant.sunflower'/988, l='MpServer', x=-617.22, y=64.13, z=311.69], EntityChicken['Chicken'/1500, l='MpServer', x=-595.59, y=69.00, z=235.44], EntityChicken['Chicken'/477, l='MpServer', x=-601.59, y=63.00, z=326.34], EntityItem['item.tile.doublePlant.sunflower'/989, l='MpServer', x=-618.41, y=64.13, z=309.53], EntityChicken['Chicken'/1501, l='MpServer', x=-607.81, y=69.00, z=244.31], EntityChicken['Chicken'/478, l='MpServer', x=-604.84, y=65.00, z=327.84], EntityItem['item.item.leather'/990, l='MpServer', x=-614.81, y=64.13, z=316.13], EntityItem['item.item.egg'/479, l='MpServer', x=-605.66, y=69.13, z=331.66], EntityItem['item.item.beefRaw'/991, l='MpServer', x=-614.47, y=64.13, z=315.59], EntityChicken['Chicken'/480, l='MpServer', x=-592.47, y=68.00, z=335.69], EntityItem['item.tile.doublePlant.sunflower'/992, l='MpServer', x=-618.41, y=66.13, z=316.78], EntityChicken['Chicken'/481, l='MpServer', x=-592.53, y=64.00, z=331.53], EntityItem['item.tile.dirt.default'/993, l='MpServer', x=-617.88, y=64.13, z=315.31], EntityItem['item.tile.dirt.default'/994, l='MpServer', x=-616.06, y=64.13, z=315.22], EntityChicken['Chicken'/482, l='MpServer', x=-602.56, y=68.00, z=331.56], EntityItem['item.tile.dirt.default'/995, l='MpServer', x=-617.16, y=64.13, z=314.13], EntityItem['item.tile.dirt.default'/996, l='MpServer', x=-617.28, y=64.13, z=316.22], EntityChicken['Chicken'/484, l='MpServer', x=-597.47, y=65.00, z=331.34], EntityItem['item.tile.dirt.default'/997, l='MpServer', x=-615.16, y=65.13, z=317.09], EntityItem['item.tile.dirt.default'/998, l='MpServer', x=-614.75, y=64.13, z=316.31], EntityItem['item.tile.dirt.default'/999, l='MpServer', x=-616.38, y=64.13, z=316.22], EntityItem['item.tile.dirt.default'/1000, l='MpServer', x=-616.19, y=64.13, z=313.59], EntityVillager['Villager'/1001, l='MpServer', x=-621.28, y=64.00, z=317.31], EntityVillager['Villager'/1002, l='MpServer', x=-610.50, y=64.00, z=312.06], EntityChicken['Chicken'/1003, l='MpServer', x=-619.56, y=64.00, z=309.56], EntityItem['item.item.egg'/1005, l='MpServer', x=-620.50, y=60.13, z=293.00], EntityItem['item.item.egg'/1006, l='MpServer', x=-618.69, y=60.13, z=295.06], EntityItem['item.item.egg'/1007, l='MpServer', x=-621.09, y=60.13, z=291.31], EntityItem['item.item.egg'/1008, l='MpServer', x=-610.03, y=63.13, z=289.97], EntityItem['item.item.egg'/1009, l='MpServer', x=-622.56, y=61.13, z=291.59], EntityChicken['Chicken'/1010, l='MpServer', x=-627.47, y=60.15, z=291.53], EntityChicken['Chicken'/1011, l='MpServer', x=-612.34, y=62.37, z=297.53], EntityChicken['Chicken'/1012, l='MpServer', x=-620.56, y=62.18, z=291.59], EntityChicken['Chicken'/1013, l='MpServer', x=-613.59, y=63.00, z=288.66], EntityItem['item.item.egg'/1014, l='MpServer', x=-611.13, y=62.13, z=289.88], EntityChicken['Chicken'/1015, l='MpServer', x=-611.91, y=62.47, z=291.94], EntityChicken['Chicken'/1527, l='MpServer', x=-576.41, y=69.00, z=253.66], EntityChicken['Chicken'/1016, l='MpServer', x=-611.91, y=62.40, z=290.78], EntityChicken['Chicken'/1017, l='MpServer', x=-612.19, y=62.49, z=289.16], EntityChicken['Chicken'/1018, l='MpServer', x=-612.34, y=62.37, z=291.44], EntityChicken['Chicken'/1019, l='MpServer', x=-614.34, y=62.43, z=298.53], EntityChicken['Chicken'/1020, l='MpServer', x=-621.56, y=64.00, z=300.38], EntityChicken['Chicken'/1021, l='MpServer', x=-617.31, y=62.47, z=291.44], EntityItem['item.item.egg'/1533, l='MpServer', x=-580.13, y=69.13, z=241.31], EntityChicken['Chicken'/1022, l='MpServer', x=-628.41, y=61.06, z=305.53], EntityMooshroom['Mooshroom'/1534, l='MpServer', x=-587.75, y=68.00, z=248.69], EntityChicken['Chicken'/1023, l='MpServer', x=-622.34, y=62.37, z=293.47], EntityMooshroom['Mooshroom'/1535, l='MpServer', x=-589.75, y=64.00, z=256.53]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2556)
at net.minecraft.client.Minecraft.run(Minecraft.java:972)
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 net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
at GradleStart.main(GradleStart.java:45)

-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 8.1 (amd64) version 6.3
Java Version: 1.8.0_45, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 647071336 bytes (617 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.85.1230 Minecraft Forge 10.13.2.1230 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.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
theolympiansmod{0.1} [The Olympians Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: AMD Radeon HD 8400 GL version 4.3.12804 Compatibility Profile Context 13.352.1004.1007, ATI Technologies Inc.
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)
[21:23:12] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Boone.mcfuzz\Desktop\Olympians Mod\eclipse\.\crash-reports\crash-2015-08-14_21.23.12-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

java seems to be having a problem with this line of code, and im not sure why:     

int spell = stack.stackTagCompound.getInteger("Spell");

 

anyway thank you for your time.

Im serious don't look at it!!

Link to comment
Share on other sites

A

NullPointerException

is being thrown because either

itemstack

or

itemstack.stackTagCompound

is

null

, I suspect it's

itemstack.stackCompound

.

 

Always check if an

ItemStack

has a stack tag compound before trying to read from or write to it.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

if(stack.hasTagCompound() == true){ like this? I think it worked

Yes, but there's no need to explicitly compare a boolean to true or false. Just use

if (someMethod())

or

if (!someMethod())

.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

if I didn't do this would I cause problems?

 

Explicitly comparing booleans won't cause any problems, it just makes your code look messy (and needlessly verbose).

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, I'm trying to modify the effects of native enchantments for bows and arrows in Minecraft. After using a decompilation tool, I found that the specific implementations of native bow and arrow enchantments (including `ArrowDamageEnchantment`, `ArrowKnockbackEnchantment`, `ArrowFireEnchantment`, `ArrowInfiniteEnchantment`, `ArrowPiercingEnchantment`) do not contain any information about the enchantment effects (such as the `getDamageProtection` function for `ProtectionEnchantment`, `getDamageBonus` function for `DamageEnchantment`, etc.). Upon searching for the base class of arrows, `AbstractArrow`, I found a function named setEnchantmentEffectsFromEntity`, which seems to be used to retrieve the enchantment levels of the tool held by a `LivingEntity` and calculate the specific values of the enchantment effects. However, after testing with the following code, I found that this function is not being called:   @Mixin(AbstractArrow.class) public class ModifyArrowEnchantmentEffects {     private static final Logger LOGGER = LogUtils.getLogger();     @Inject(         method = "setEnchantmentEffectsFromEntity",         at = @At("HEAD")     )     private void logArrowEnchantmentEffectsFromEntity(CallbackInfo ci) {         LOGGER.info("Arrow enchantment effects from entity");     } }   Upon further investigation, I found that within the onHitEntity method, there are several lines of code:               if (!this.level().isClientSide &amp;&amp; entity1 instanceof LivingEntity) {                EnchantmentHelper.doPostHurtEffects(livingentity, entity1);                EnchantmentHelper.doPostDamageEffects((LivingEntity)entity1, livingentity);             }   These lines of code actually call the doPostHurt and doPostAttack methods of each enchantment in the enchantment list. However, this leads back to the issue because native bow and arrow enchantments do not implement these functions. Although their base class defines the functions, they are empty. At this point, I'm completely stumped and seeking assistance. Thank you.
    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
  • Topics

×
×
  • Create New...

Important Information

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