Jump to content

Recommended Posts

Posted

I'm making a machine that has tanks (just a FluidStack) that are displayed in the GUI. When I re log the tanks look empty. So I used the Logger to print the fluid type and amount. On the Server thread everything was right but on the Render thread it was empty. Plz help.

 

TileEntity class:

public FluidStack tank1, tank2, tank3, tank4, tank5;
public int cookTime, cookTimeTotal;	
private NonNullList<ItemStack> contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);

@Override
public CompoundNBT write(CompoundNBT compound)
{
	compound.putInt("cookTime", cookTime);
	compound.putInt("cookTimeTotal", cookTimeTotal);
	compound.putInt("tank1Amount", tank1.getAmount());
	compound.putString("tank1Fluid", fluidToString(tank1));
	compound.putInt("tank2Amount", tank2.getAmount());
	compound.putString("tank2Fluid", fluidToString(tank2));
	compound.putInt("tank3Amount", tank3.getAmount());
	compound.putString("tank3Fluid", fluidToString(tank3));
	compound.putInt("tank4Amount", tank4.getAmount());
	compound.putString("tank4Fluid", fluidToString(tank4));
	compound.putInt("tank5Amount", tank5.getAmount());
	compound.putString("tank5Fluid", fluidToString(tank5));
	if(!checkLootAndWrite(compound)) ItemStackHelper.saveAllItems(compound, contents);
	return super.write(compound);
}

@Override
public void read(CompoundNBT compound)
{
	super.read(compound);
	cookTime = compound.getInt("cookTime");
	cookTimeTotal = compound.getInt("cookTimeTotal");
	SpaceMod.LOGGER.info(compound.getString("tank1Fluid"));
	SpaceMod.LOGGER.info(stringToFluid(compound.getString("tank1Fluid")));
	SpaceMod.LOGGER.info(compound.getInt("tank1Amount"));
	tank1 = new FluidStack(stringToFluid(compound.getString("tank1Fluid")), compound.getInt("tank1Amount"));
	tank2 = new FluidStack(stringToFluid(compound.getString("tank2Fluid")), compound.getInt("tank2Amount"));
	tank3 = new FluidStack(stringToFluid(compound.getString("tank3Fluid")), compound.getInt("tank3Amount"));
	tank4 = new FluidStack(stringToFluid(compound.getString("tank4Fluid")), compound.getInt("tank4Amount"));
	tank5 = new FluidStack(stringToFluid(compound.getString("tank5Fluid")), compound.getInt("tank5Amount"));
	contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
	if(!checkLootAndRead(compound)) ItemStackHelper.loadAllItems(compound, contents);
}

private String fluidToString(FluidStack stack)
{
	if(stack.getFluid() == Fluids.WATER) return "water";
	if(stack.getFluid() == FluidInit.SEAWATER.get()) return "seawater";
	if(stack.getFluid() == FluidInit.HYDROGEN.get()) return "hydrogen";
	if(stack.getFluid() == FluidInit.OXYGEN.get()) return "oxygen";
	return "empty";
}

private Fluid stringToFluid(String name)
{
		if(name == "water") return Fluids.WATER;
		if(name == "seawater") return FluidInit.SEAWATER.get();
		if(name == "hydrogen") return FluidInit.HYDROGEN.get();
		if(name == "oxygen") return FluidInit.OXYGEN.get();
		return Fluids.EMPTY;
}

 

Console:

@[m@[32m[15:25:51] [Server thread/INFO] [fo.sp.SpaceMod/]: net.minecraft.fluid.WaterFluid$Source@153cb763
@[m@[32m[15:25:51] [Server thread/INFO] [fo.sp.SpaceMod/]: 19000
@[m@[32m[15:25:51] [Render thread/INFO] [fo.sp.SpaceMod/]: net.minecraft.fluid.EmptyFluid@624b523
@[m@[32m[15:25:51] [Render thread/INFO] [fo.sp.SpaceMod/]: 0

 

Posted (edited)

Use the fluid handler capability, also you should store fluid in FluidTank instances to simplify the process.

Edited by imacatlolol
Added more info

I'm eager to learn and am prone to mistakes. Don't hesitate to tell me how I can improve.

Posted

So I tried switching to fluid tanks but when I try to leave the world it freezes and the console is filled with uncaught exception from CompoundNBT

 

Updated TileEntity class:

public FluidTank tank1, tank2, tank3, tank4, tank5;
private NonNullList<ItemStack> contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
protected int numPlayersUsing;
private IItemHandlerModifiable items = createHandler();
private LazyOptional<IItemHandlerModifiable> itemHandler = LazyOptional.of(() -> items);
private LazyOptional<IFluidHandler> tank1Handler = LazyOptional.of(() -> tank1)

@Override
public CompoundNBT write(CompoundNBT compound)
{
	compound.putInt("cookTime", cookTime);
	compound.putInt("cookTimeTotal", cookTimeTotal);
	compound.put("tank1", tank1.writeToNBT(compound));
	if(!checkLootAndWrite(compound)) ItemStackHelper.saveAllItems(compound, contents);
	return super.write(compound);
}

@Override
public void read(CompoundNBT compound)
{
	super.read(compound);
	cookTime = compound.getInt("cookTime");
	cookTimeTotal = compound.getInt("cookTimeTotal");
	tank1.readFromNBT(compound.getCompound("tank1"));
	contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
	if(!checkLootAndRead(compound)) ItemStackHelper.loadAllItems(compound, contents);
}

@Override
public void updateContainingBlockInfo()
{
	super.updateContainingBlockInfo();
	
	if(itemHandler != null)
	{
		itemHandler.invalidate();
		itemHandler = null;
	}
	
	if(tank1Handler != null)
	{
		tank1Handler.invalidate();
		tank1Handler = null;
	}
}

@Override
public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> cap, @Nonnull Direction side)
{
	if(cap == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY && side == Direction.UP) return itemHandler.cast();
	if(cap == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY && side == Direction.DOWN) return tank1Handler.cast();
	return super.getCapability(cap);
}
	
@Override
public void remove()
{
	super.remove();
	
	if(itemHandler != null) itemHandler.invalidate();
	if(tank1Handler != null) tank1Handler.invalidate();
}

 

Console:

@[m@[32m[14:08:13] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
@[m@[32m[14:08:13] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)

 

Posted

Console:

[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.writeEntry(CompoundNBT.java:507)
[m[32m[08:48:31] [chunk IO worker/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: 	at net.minecraft.nbt.CompoundNBT.write(CompoundNBT.java:77)
[m[36m[08:48:31] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World
[m[32m[08:48:36] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[m[32m[08:48:36] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/minecraft:overworld
[m[36m[08:48:36] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World
[m[32m[08:48:38] [Server thread/INFO] [minecraft/ServerPlayNetHandler]: Dev lost connection: Disconnected
[m[32m[08:48:38] [Server thread/INFO] [minecraft/MinecraftServer]: Dev left the game
[m[32m[08:48:38] [Server thread/INFO] [minecraft/ServerPlayNetHandler]: Stopping singleplayer server as player logged out
[m[32m[08:48:38] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[m[32m[08:48:38] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[m[32m[08:48:38] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[m[32m[08:48:38] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/minecraft:overworld

 

And then when I leave the world the game freezes

Posted
@Override
	public CompoundNBT write(CompoundNBT compound)
	{
		compound.putInt("cookTime", cookTime);
		compound.putInt("cookTimeTotal", cookTimeTotal);
		compound = tank1.writeToNBT(compound);
		if(!checkLootAndWrite(compound)) ItemStackHelper.saveAllItems(compound, contents);
		return super.write(compound);
	}
	
	@Override
	public void read(CompoundNBT compound)
	{
		super.read(compound);
		cookTime = compound.getInt("cookTime");
		cookTimeTotal = compound.getInt("cookTimeTotal");
		tank1.readFromNBT(compound);
		contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
		if(!checkLootAndRead(compound)) ItemStackHelper.loadAllItems(compound, contents);
	}

 

Posted
	@Override
	public CompoundNBT write(CompoundNBT compound)
	{
		compound.putInt("cookTime", cookTime);
		compound.putInt("cookTimeTotal", cookTimeTotal);
		compound.put("tank1", tank1.writeToNBT(compound));
		if(!checkLootAndWrite(compound)) ItemStackHelper.saveAllItems(compound, contents);
		return super.write(compound);
	}

	@Override
	public void read(CompoundNBT compound)
	{
		super.read(compound);
		cookTime = compound.getInt("cookTime");
		cookTimeTotal = compound.getInt("cookTimeTotal");
		tank1.readFromNBT(compound.getCompound("tank1"));
		contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
		if(!checkLootAndRead(compound)) ItemStackHelper.loadAllItems(compound, contents);
	}

 

Posted
public class ElectrolyzerTileEntity extends LockableLootTileEntity implements ITickableTileEntity
{
	public FluidTank tank1, tank2, tank3, tank4, tank5;
	public int cookTime, cookTimeTotal;
	public ElectrolyzerRecipe recipe;
	
	private NonNullList<ItemStack> contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
	protected int numPlayersUsing;
	private IItemHandlerModifiable items = createHandler();
	private LazyOptional<IItemHandlerModifiable> itemHandler = LazyOptional.of(() -> items);
	private LazyOptional<IFluidHandler> tank1Handler = LazyOptional.of(() -> tank1);
//	private LazyOptional<IFluidHandler> tank2Handler = LazyOptional.of(() -> tank2);
//	private LazyOptional<IFluidHandler> tank3Handler = LazyOptional.of(() -> tank3);
//	private LazyOptional<IFluidHandler> tank4Handler = LazyOptional.of(() -> tank4);
//	private LazyOptional<IFluidHandler> tank5Handler = LazyOptional.of(() -> tank5);
	
	public ElectrolyzerTileEntity(TileEntityType<?> type)
	{
		super(type);
		
		tank1 = new FluidTank(20000);
		tank2 = new FluidTank(20000);
		tank3 = new FluidTank(20000);
		tank4 = new FluidTank(20000);
		tank5 = new FluidTank(20000);
	}
	
	public ElectrolyzerTileEntity()
	{
		this(TileEntityInit.ELECTROLYZER.get());
	}
	
	@Override
	public void tick()
	{
		if(isIngredient(getStackInSlot(0)))
		{
			tank1.fill(new FluidStack(((BucketItem) getStackInSlot(0).getItem()).getFluid(), 20000), FluidAction.EXECUTE);
			setInventorySlotContents(0, new ItemStack(Items.BUCKET));
		}
		
		if(isIngredient(tank1.getFluid()))
		{
			if(recipe == null)
			{
				recipe = getRecipe(tank1.getFluid());
				cookTimeTotal = recipe.getCookTime();
				cookTime = 0;
			}
			
			if(canCook())
			{
				if(cookTime == cookTimeTotal)
				{
					tank1.drain(recipe.getIngredient().getAmount(), FluidAction.EXECUTE);
					tank2.fill(recipe.getResult1(), FluidAction.EXECUTE);
					tank3.fill(recipe.getResult2(), FluidAction.EXECUTE);
					tank4.fill(recipe.getResult3(), FluidAction.EXECUTE);
					tank5.fill(recipe.getResult4(), FluidAction.EXECUTE);
					
					if(recipe.getIngredient().getFluid() == FluidInit.SEAWATER.get())
					{
						if(getStackInSlot(3).isEmpty()) setInventorySlotContents(3, new ItemStack(ItemInit.CAUSTIC_SODA.get(), 0));
						getStackInSlot(3).grow(1);
					}
					
					recipe = null;
					cookTime = 0;
				}
				else cookTime++;
			}
			else cookTime = 0;
		}
		else cookTime = 0;
		
		SpaceMod.LOGGER.info(tank1.getFluid().getFluid() + " : " + tank1.getFluid().getAmount());
	}
	
	@Override
	public int getSizeInventory()
	{
		return 5;
	}
	
	@Override
	public NonNullList<ItemStack> getItems()
	{
		return contents;
	}
	
	@Override
	protected void setItems(NonNullList<ItemStack> items)
	{
		contents = items;
	}
	
	@Override
	protected ITextComponent getDefaultName()
	{
		return new TranslationTextComponent("container.space.electrolyzer");
	}
	
	@Override
	protected Container createMenu(int id, PlayerInventory player)
	{
		return new ElectrolyzerContainer(id, player, this);
	}
	
	@Override
	public CompoundNBT write(CompoundNBT compound)
	{
		compound.putInt("cookTime", cookTime);
		compound.putInt("cookTimeTotal", cookTimeTotal);
		compound.put("tank1", tank1.writeToNBT(new CompoundNBT()));
//		compound.put("tank2", tank2.writeToNBT(compound));
//		compound.put("tank3", tank3.writeToNBT(compound));
//		compound.put("tank4", tank4.writeToNBT(compound));
//		compound.put("tank5", tank5.writeToNBT(compound));
		if(!checkLootAndWrite(compound)) ItemStackHelper.saveAllItems(compound, contents);
		return super.write(compound);
	}
	
	@Override
	public void read(CompoundNBT compound)
	{
		super.read(compound);
		cookTime = compound.getInt("cookTime");
		cookTimeTotal = compound.getInt("cookTimeTotal");
		tank1.readFromNBT(compound.getCompound("tank1"));
//		tank2.readFromNBT(compound.getCompound("tank2"));
//		tank3.readFromNBT(compound.getCompound("tank3"));
//		tank4.readFromNBT(compound.getCompound("tank4"));
//		tank5.readFromNBT(compound.getCompound("tank5"));
		contents = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY);
		if(!checkLootAndRead(compound)) ItemStackHelper.loadAllItems(compound, contents);
	}
	
	@Override
	public boolean receiveClientEvent(int id, int type)
	{
		if(id == 1)
		{
			numPlayersUsing = type;
			return true;
		}
		
		return super.receiveClientEvent(id, type);
	}
	
	@Override
	public void openInventory(PlayerEntity player)
	{
		if(!player.isSpectator())
		{
			if(numPlayersUsing < 0) numPlayersUsing = 0;
			numPlayersUsing++;
			onOpenOrClose();
		}
	}
	
	@Override
	public void closeInventory(PlayerEntity player)
	{
		if(!player.isSpectator())
		{
			numPlayersUsing++;
			onOpenOrClose();
		}
	}
	
	protected void onOpenOrClose()
	{
		Block block = getBlockState().getBlock();
		
		if(block instanceof ElectrolyzerBlock)
		{
			world.addBlockEvent(pos, block, 1, numPlayersUsing);
			world.notifyNeighborsOfStateChange(pos, block);
		}
	}
	
	public static int getPlayersUsing(IBlockReader reader, BlockPos pos)
	{
		if(reader.getBlockState(pos).hasTileEntity())
		{
			TileEntity te = reader.getTileEntity(pos);
			if(te instanceof ElectrolyzerTileEntity) return ((ElectrolyzerTileEntity) te).numPlayersUsing;
		}
		
		return 0;
	}
	
	public static void swapContents(ElectrolyzerTileEntity te, ElectrolyzerTileEntity otherTe)
	{
		NonNullList<ItemStack> list = te.getItems();
		te.setItems(otherTe.getItems());
		otherTe.setItems(list);
	}
	
	@Override
	public void updateContainingBlockInfo()
	{
		super.updateContainingBlockInfo();
		
		if(itemHandler != null)
		{
			itemHandler.invalidate();
			itemHandler = null;
		}
		
//		if(tank1Handler != null)
//		{
//			tank1Handler.invalidate();
//			tank1Handler = null;
//		}
	}
	
	@Override
	public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> cap, @Nonnull Direction side)
	{
		if(cap == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) return itemHandler.cast();
//		if(cap == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY) return tank1Handler.cast();
//		if(cap == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY && side == Direction.NORTH) return tank2Handler.cast();
//		if(cap == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY && side == Direction.EAST) return tank3Handler.cast();
//		if(cap == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY && side == Direction.SOUTH) return tank4Handler.cast();
//		if(cap == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY && side == Direction.WEST) return tank5Handler.cast();
		return super.getCapability(cap);
	}
	
	private IItemHandlerModifiable createHandler()
	{
		return new InvWrapper(this);
	}
	
	@Override
	public void remove()
	{
		super.remove();
		
		if(itemHandler != null) itemHandler.invalidate();
//		if(tank1Handler != null) tank1Handler.invalidate();
	}
	
	private boolean isIngredient(FluidStack stack)
	{
		if(stack.getFluid() == Fluids.WATER) return true;
		if(stack.getFluid() == FluidInit.SEAWATER.get()) return true;
		return false;
	}
	
	public boolean isIngredient(ItemStack stack)
	{
		if(stack.getItem() == Items.WATER_BUCKET) return true;
		if(stack.getItem() == ItemInit.SEAWATER_BUCKET.get()) return true;
		return false;
	}
	
	private boolean canCook()
	{
		boolean isPowered = true;
		
		if(isPowered)
		{
			return tank1.getCapacity() >= recipe.getIngredient().getAmount() &&
					(tank2.isEmpty() || (tank2.getFluid().getFluid() == recipe.getResult1().getFluid() && tank2.getCapacity() + recipe.getResult1().getAmount() <= 20000)) &&
					(tank3.isEmpty() || (tank3.getFluid().getFluid() == recipe.getResult2().getFluid() && tank3.getCapacity() + recipe.getResult2().getAmount() <= 20000)) &&
					(tank4.isEmpty() || (tank4.getFluid().getFluid() == recipe.getResult3().getFluid() && tank4.getCapacity() + recipe.getResult3().getAmount() <= 20000)) &&
					(tank5.isEmpty() || (tank5.getFluid().getFluid() == recipe.getResult4().getFluid() && tank5.getCapacity() + recipe.getResult4().getAmount() <= 20000)) &&
					recipe.getIngredient().getFluid() == FluidInit.SEAWATER.get() ? ((getStackInSlot(3).getItem() == ItemInit.CAUSTIC_SODA.get() && getStackInSlot(3).getCount() <= 63) || getStackInSlot(3).isEmpty()) : true;
		}
		
		return false;
	}
	
	private ElectrolyzerRecipe getRecipe(FluidStack ingredient)
	{
		if(ingredient.getFluid() == Fluids.WATER) return new ElectrolyzerRecipe(60, new FluidStack(Fluids.WATER, 1000), new FluidStack(FluidInit.HYDROGEN.get(), 500), new FluidStack(FluidInit.OXYGEN.get(), 250), FluidStack.EMPTY, FluidStack.EMPTY);
		if(ingredient.getFluid() == FluidInit.SEAWATER.get()) return new ElectrolyzerRecipe(60, new FluidStack(FluidInit.SEAWATER.get(), 1000), new FluidStack(FluidInit.HYDROGEN.get(), 500), new FluidStack(FluidInit.CHLORINE.get(), 500), FluidStack.EMPTY, FluidStack.EMPTY);
		
		return null;
	}
	
	public FluidTank getTank(int index)
	{
		switch(index)
		{
		case 1:
			return tank1;
		case 2:
			return tank2;
		case 3:
			return tank3;
		case 4:
			return tank4;
		case 5:
			return tank5;
		default:
			return tank1;
		}
	}
}

 

Posted

I figured it out:

@Override
public CompoundNBT getUpdateTag()
{
	return write(new CompoundNBT());
}

@Override
public void handleUpdateTag(CompoundNBT tag)
{
	read(tag);
}

 

  • FossilFind changed the title to [Solved] [1.15.2] Saving fluid stack to nbt

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

    • Okay, but does the modpack works with 1.12 or just with 1.12.2, because I need the Forge client specifically for Minecraft 1.12, not 1.12.2
    • Version 1.19 - Forge 41.0.63 I want to create a wolf entity that I can ride, so far it seems to be working, but the problem is that when I get on the wolf, I can’t control it. I then discovered that the issue is that the server doesn’t detect that I’m riding the wolf, so I’m struggling with synchronization. However, it seems to not be working properly. As I understand it, the server receives the packet but doesn’t register it correctly. I’m a bit new to Java, and I’ll try to provide all the relevant code and prints *The comments and prints are translated by chatgpt since they were originally in Spanish* Thank you very much in advance No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. MountableWolfEntity package com.vals.valscraft.entity; import com.vals.valscraft.network.MountSyncPacket; import com.vals.valscraft.network.NetworkHandler; import net.minecraft.client.Minecraft; import net.minecraft.network.syncher.EntityDataAccessor; import net.minecraft.network.syncher.EntityDataSerializers; import net.minecraft.network.syncher.SynchedEntityData; import net.minecraft.server.MinecraftServer; import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.Mob; import net.minecraft.world.entity.ai.attributes.AttributeSupplier; import net.minecraft.world.entity.ai.attributes.Attributes; import net.minecraft.world.entity.animal.Wolf; import net.minecraft.world.entity.player.Player; import net.minecraft.world.entity.Entity; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; import net.minecraft.world.level.Level; import net.minecraft.world.phys.Vec3; import net.minecraftforge.event.TickEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.network.PacketDistributor; public class MountableWolfEntity extends Wolf { private boolean hasSaddle; private static final EntityDataAccessor<Byte> DATA_ID_FLAGS = SynchedEntityData.defineId(MountableWolfEntity.class, EntityDataSerializers.BYTE); public MountableWolfEntity(EntityType<? extends Wolf> type, Level level) { super(type, level); this.hasSaddle = false; } @Override protected void defineSynchedData() { super.defineSynchedData(); this.entityData.define(DATA_ID_FLAGS, (byte)0); } public static AttributeSupplier.Builder createAttributes() { return Wolf.createAttributes() .add(Attributes.MAX_HEALTH, 20.0) .add(Attributes.MOVEMENT_SPEED, 0.3); } @Override public InteractionResult mobInteract(Player player, InteractionHand hand) { ItemStack itemstack = player.getItemInHand(hand); if (itemstack.getItem() == Items.SADDLE && !this.hasSaddle()) { if (!player.isCreative()) { itemstack.shrink(1); } this.setSaddle(true); return InteractionResult.SUCCESS; } else if (!level.isClientSide && this.hasSaddle()) { player.startRiding(this); MountSyncPacket packet = new MountSyncPacket(true); // 'true' means the player is mounted NetworkHandler.CHANNEL.sendToServer(packet); // Ensure the server handles the packet return InteractionResult.SUCCESS; } return InteractionResult.PASS; } @Override public void travel(Vec3 travelVector) { if (this.isVehicle() && this.getControllingPassenger() instanceof Player) { System.out.println("The wolf has a passenger."); System.out.println("The passenger is a player."); Player player = (Player) this.getControllingPassenger(); // Ensure the player is the controller this.setYRot(player.getYRot()); this.yRotO = this.getYRot(); this.setXRot(player.getXRot() * 0.5F); this.setRot(this.getYRot(), this.getXRot()); this.yBodyRot = this.getYRot(); this.yHeadRot = this.yBodyRot; float forward = player.zza; float strafe = player.xxa; if (forward <= 0.0F) { forward *= 0.25F; } this.flyingSpeed = this.getSpeed() * 0.1F; this.setSpeed((float) this.getAttributeValue(Attributes.MOVEMENT_SPEED) * 1.5F); this.setDeltaMovement(new Vec3(strafe, travelVector.y, forward).scale(this.getSpeed())); this.calculateEntityAnimation(this, false); } else { // The wolf does not have a passenger or the passenger is not a player System.out.println("No player is mounted, or the passenger is not a player."); super.travel(travelVector); } } public boolean hasSaddle() { return this.hasSaddle; } public void setSaddle(boolean hasSaddle) { this.hasSaddle = hasSaddle; } @Override protected void dropEquipment() { super.dropEquipment(); if (this.hasSaddle()) { this.spawnAtLocation(Items.SADDLE); this.setSaddle(false); } } @SubscribeEvent public static void onServerTick(TickEvent.ServerTickEvent event) { if (event.phase == TickEvent.Phase.START) { MinecraftServer server = net.minecraftforge.server.ServerLifecycleHooks.getCurrentServer(); if (server != null) { for (ServerPlayer player : server.getPlayerList().getPlayers()) { if (player.isPassenger() && player.getVehicle() instanceof MountableWolfEntity) { MountableWolfEntity wolf = (MountableWolfEntity) player.getVehicle(); System.out.println("Tick: " + player.getName().getString() + " is correctly mounted on " + wolf); } } } } } private boolean lastMountedState = false; @Override public void tick() { super.tick(); if (!this.level.isClientSide) { // Only on the server boolean isMounted = this.isVehicle() && this.getControllingPassenger() instanceof Player; // Only print if the state changed if (isMounted != lastMountedState) { if (isMounted) { Player player = (Player) this.getControllingPassenger(); // Verify the passenger is a player System.out.println("Server: Player " + player.getName().getString() + " is now mounted."); } else { System.out.println("Server: The wolf no longer has a passenger."); } lastMountedState = isMounted; } } } @Override public void addPassenger(Entity passenger) { super.addPassenger(passenger); if (passenger instanceof Player) { Player player = (Player) passenger; if (!this.level.isClientSide && player instanceof ServerPlayer) { // Send the packet to the server to indicate the player is mounted NetworkHandler.CHANNEL.send(PacketDistributor.PLAYER.with(() -> (ServerPlayer) player), new MountSyncPacket(true)); } } } @Override public void removePassenger(Entity passenger) { super.removePassenger(passenger); if (passenger instanceof Player) { Player player = (Player) passenger; if (!this.level.isClientSide && player instanceof ServerPlayer) { // Send the packet to the server to indicate the player is no longer mounted NetworkHandler.CHANNEL.send(PacketDistributor.PLAYER.with(() -> (ServerPlayer) player), new MountSyncPacket(false)); } } } @Override public boolean isControlledByLocalInstance() { Entity entity = this.getControllingPassenger(); return entity instanceof Player; } @Override public void positionRider(Entity passenger) { if (this.hasPassenger(passenger)) { double xOffset = Math.cos(Math.toRadians(this.getYRot() + 90)) * 0.4; double zOffset = Math.sin(Math.toRadians(this.getYRot() + 90)) * 0.4; passenger.setPos(this.getX() + xOffset, this.getY() + this.getPassengersRidingOffset() + passenger.getMyRidingOffset(), this.getZ() + zOffset); } } } MountSyncPacket package com.vals.valscraft.network; import com.vals.valscraft.entity.MountableWolfEntity; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.server.level.ServerLevel; import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.player.Player; import net.minecraftforge.network.NetworkEvent; import java.util.function.Supplier; public class MountSyncPacket { private final boolean isMounted; public MountSyncPacket(boolean isMounted) { this.isMounted = isMounted; } public void encode(FriendlyByteBuf buffer) { buffer.writeBoolean(isMounted); } public static MountSyncPacket decode(FriendlyByteBuf buffer) { return new MountSyncPacket(buffer.readBoolean()); } public void handle(NetworkEvent.Context context) { context.enqueueWork(() -> { ServerPlayer player = context.getSender(); // Get the player from the context if (player != null) { // Verifies if the player has dismounted if (!isMounted) { Entity vehicle = player.getVehicle(); if (vehicle instanceof MountableWolfEntity wolf) { // Logic to remove the player as a passenger wolf.removePassenger(player); System.out.println("Server: Player " + player.getName().getString() + " is no longer mounted."); } } } }); context.setPacketHandled(true); // Marks the packet as handled } } networkHandler package com.vals.valscraft.network; import com.vals.valscraft.valscraft; import net.minecraft.resources.ResourceLocation; import net.minecraftforge.network.NetworkRegistry; import net.minecraftforge.network.simple.SimpleChannel; import net.minecraftforge.network.NetworkEvent; import java.util.function.Supplier; public class NetworkHandler { private static final String PROTOCOL_VERSION = "1"; public static final SimpleChannel CHANNEL = NetworkRegistry.newSimpleChannel( new ResourceLocation(valscraft.MODID, "main"), () -> PROTOCOL_VERSION, PROTOCOL_VERSION::equals, PROTOCOL_VERSION::equals ); public static void init() { int packetId = 0; // Register the mount synchronization packet CHANNEL.registerMessage( packetId++, MountSyncPacket.class, MountSyncPacket::encode, MountSyncPacket::decode, (msg, context) -> msg.handle(context.get()) // Get the context with context.get() ); } }  
    • Do you use features of inventory profiles next (ipnext) or is there a change without it?
  • Topics

×
×
  • Create New...

Important Information

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