Fix crash with auto crafter

This commit is contained in:
modmuss50 2017-06-21 17:13:07 +01:00
parent 9477797ec7
commit 3a0c5a6f31
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -227,13 +227,17 @@ public class TileAutoCraftingTable extends TilePowerAcceptor implements IContain
@Override
public NBTTagCompound writeToNBT(NBTTagCompound tag) {
tag.setString("currentRecipe", currentRecipe.toString());
if(currentRecipe != null){
tag.setString("currentRecipe", currentRecipe.toString());
}
return super.writeToNBT(tag);
}
@Override
public void readFromNBT(NBTTagCompound tag) {
currentRecipe = new ResourceLocation(tag.getString("currentRecipe"));
if(tag.hasKey("currentRecipe")){
currentRecipe = new ResourceLocation(tag.getString("currentRecipe"));
}
super.readFromNBT(tag);
}
}