diff --git a/src/main/java/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java b/src/main/java/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java index 89a7106c..885f656b 100644 --- a/src/main/java/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java +++ b/src/main/java/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java @@ -323,8 +323,10 @@ public class ItemRitualDiviner extends EnergyItems implements IRitualDiviner NBTTagCompound tag = stack.getTagCompound(); if(tag == null || !tag.hasKey("location")) { - tag = new NBTTagCompound(); - stack.setTagCompound(tag); +// tag = new NBTTagCompound(); +// stack.setTagCompound(tag); + this.setStoredLocation(stack, new Int3(0,0,0)); + return; } NBTTagCompound locTag = (NBTTagCompound)tag.getTag("location");