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

    • After some time minecraft crashes with an error. Here is the log https://drive.google.com/file/d/1o-2R6KZaC8sxjtLaw5qj0A-GkG_SuoB5/view?usp=sharing
    • The specific issue is that items in my inventory wont stack properly. For instance, if I punch a tree down to collect wood, the first block I collected goes to my hand. So when I punch the second block of wood to collect it, it drops, but instead of stacking with the piece of wood already in my hand, it goes to the second slot in my hotbar instead. Another example is that I'll get some dirt, and then when I'm placing it down later I'll accidentally place a block where I don't want it. When I harvest it again, it doesn't go back to the stack that it came from on my hotbar, where it should have gone, but rather into my inventory. That means that if my inventory is full, then the dirt wont be picked up even though there should be space available in the stack I'm holding. The forge version I'm using is 40.3.0, for java 1.18.2. I'll leave the mods I'm using here, and I'd appreciate it if anybody can point me in the right direction in regards to figuring out how to fix this. I forgot to mention that I think it only happens on my server but I&#39;m not entirely sure. PLEASE HELP ME! LIST OF THE MODS. aaa_particles Adorn AdvancementPlaques AI-Improvements AkashicTome alexsdelight alexsmobs AmbientSounds amwplushies Animalistic another_furniture AppleSkin Aquaculture aquamirae architectury artifacts Atlas-Lib AutoLeveling AutoRegLib auudio balm betterfpsdist biggerstacks biomancy BiomesOPlenty blockui blueprint Bookshelf born_in_chaos Botania braincell BrassAmberBattleTowers brutalbosses camera CasinoCraft cfm (MrCrayfish’s Furniture Mod) chat_heads citadel cloth-config Clumps CMDCam CNB cobweb collective comforts convenientcurioscontainer cookingforblockheads coroutil CosmeticArmorReworked CozyHome CrabbersDelight crashexploitfixer crashutilities Create CreativeCore creeperoverhaul cristellib crittersandcompanions Croptopia CroptopiaAdditions CullLessLeaves curios curiouslanterns curiouslights Curses' Naturals CustomNPCs CyclopsCore dannys_expansion decocraft Decoration Mod DecorationDelightRefurbished Decorative Blocks Disenchanting DistantHorizons doubledoors DramaticDoors drippyloadingscreen durabilitytooltip dynamic-fps dynamiclights DynamicTrees DynamicTreesBOP DynamicTreesPlus Easy Dungeons EasyAnvils EasyMagic easy_npc eatinganimation ecologics effective_fg elevatorid embeddium emotecraft enchantlimiter EnchantmentDescriptions EnderMail engineersdecor entityculling entity_model_features entity_texture_features epicfight EvilCraft exlinefurniture expandability explosiveenhancement factory-blocks fairylights fancymenu FancyVideo FarmersDelight fast-ip-ping FastSuite ferritecore finsandtails FixMySpawnR Forge Middle Ages fossil FpsReducer2 furnish GamingDeco geckolib goblintraders goldenfood goodall H.e.b habitat harvest-with-ease hexerei hole_filler huge-structure-blocks HunterIllager iammusicplayer Iceberg illuminations immersive_paintings incubation infinitybuttons inventoryhud InventoryProfilesNext invocore ItemBorders itemzoom Jade jei (Just Enough Items) JetAndEliasArmors journeymap JRFTL justzoom kiwiboi Kobolds konkrete kotlinforforge lazydfu LegendaryTooltips libIPN lightspeed lmft lodestone LongNbtKiller LuckPerms Lucky77 MagmaMonsters malum ManyIdeasCore ManyIdeasDoors marbledsarsenal marg mcw-furniture mcw-lights mcw-paths mcw-stairs mcw-trapdoors mcw-windows meetyourfight melody memoryleakfix Mimic minecraft-comes-alive MineTraps minibosses MmmMmmMmmMmm MOAdecor (ART, BATH, COOKERY, GARDEN, HOLIDAYS, LIGHTS, SCIENCE) MobCatcher modonomicon mods_optimizer morehitboxes mowziesmobs MutantMonsters mysticalworld naturalist NaturesAura neapolitan NekosEnchantedBooks neoncraft2 nerb nifty NightConfigFixes nightlights nocube's_villagers_sell_animals NoSeeNoTick notenoughanimations obscure_api oculus oresabovediamonds otyacraftengine Paraglider Patchouli physics-mod Pillagers Gun PizzaCraft placeableitems Placebo player-animation-lib pneumaticcraft-repressurized polymorph PrettyPipes Prism projectbrazier Psychadelic-Chemistry PuzzlesLib realmrpg_imps_and_demons RecipesLibrary reeves-furniture RegionsUnexplored restrictedportals revive-me Scary_Mobs_And_Bosses selene shetiphiancore ShoulderSurfing smoothboot
    • Hi everyone, I'm currently developing a Forge 1.21 mod for Minecraft and I want to display a custom HUD overlay for a minigame. My goal: When the game starts, all players should see an item/block icon (from the base game, not a custom texture) plus its name/text in the HUD – similar to how the bossbar overlay works. The HUD should appear centered above the hotbar (or at a similar prominent spot), and update dynamically (icon and name change as the target item changes). What I've tried: I looked at many online tutorials and several GitHub repos (e.g. SeasonHUD, MiniHUD), but most of them use NeoForge or Forge versions <1.20 that provide the IGuiOverlay API (e.g. implements IGuiOverlay, RegisterGuiOverlaysEvent). In Forge 1.21, it seems that neither IGuiOverlay nor RegisterGuiOverlaysEvent exist anymore – at least, I can't import them and they are missing from the docs and code completion. I tried using RenderLevelStageEvent as a workaround but it is probably not intended for custom HUDs. I am not using NeoForge, and switching the project to NeoForge is currently not an option for me. I tried to look at the original minecraft source code to see how elements like hearts, hotbar etc are drawn on the screen but I am too new to Minecraft modding to understand. What I'm looking for: What is the correct way to add a custom HUD element (icon + text) in Forge 1.21, given that the previous overlay API is missing? Is there a new recommended event, callback, or method in Forge 1.21 for custom HUD overlays, or is everyone just using a workaround? Is there a minimal open-source example repo for Forge 1.21 that demonstrates a working HUD overlay without relying on NeoForge or deprecated Forge APIs? My ideal solution: Centered HUD element with an in-game item/block icon (from the base game's assets, e.g. a diamond or any ItemStack / Item) and its name as text, with a transparent background rectangle. It should be visible to the players when the mini game is running. Easy to update the item (e.g. static variable or other method), so it can change dynamically during the game. Any help, code snippets, or up-to-date references would be really appreciated! If this is simply not possible right now in Forge 1.21, it would also help to know that for sure. Thank you very much in advance!
    • The simple answer is there is not an easy way. You would need to know how to program in Java, as well as at least some familiarity with how Forge works so you could port the differences. You would also need the sourcecode for the original mod, and permission from the author to modify it, if they did not use some sort of open source license. So it's not impossible, but it would take some effort, but doing so would open up a whole new world of possibilities for you!
  • Topics

×
×
  • Create New...

Important Information

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