From 53fceb8add010ca9e6f54f9b8f452ff403f4d1ee Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 22 Oct 2018 00:21:37 +0200 Subject: [PATCH] woops --- .../ellpeck/naturesaura/blocks/tiles/TileEntityNatureAltar.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityNatureAltar.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityNatureAltar.java index 620c1ac0..4f2c3b1b 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityNatureAltar.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityNatureAltar.java @@ -259,7 +259,7 @@ public class TileEntityNatureAltar extends TileEntityImpl implements ITickable { this.container.readNBT(compound); if (!syncing) { - if (compound.hasKey("recipe_input")) { + if (compound.hasKey("recipe")) { this.currentRecipe = AltarRecipe.RECIPES.get(new ResourceLocation(compound.getString("recipe"))); this.timer = compound.getInteger("timer"); }