Fix rituals crashing when deserializing the owner

This commit is contained in:
Nicholas Ignoffo 2018-02-27 18:17:30 -08:00
parent eaf4bfb857
commit caab4dcbef

View file

@ -98,7 +98,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS
public NBTTagCompound serialize(NBTTagCompound tag) {
String ritualId = RitualRegistry.getIdForRitual(getCurrentRitual());
if (owner != null)
tag.setUniqueId(Constants.NBT.OWNER_UUID, owner);
tag.setUniqueId("owner", owner);
tag.setString(Constants.NBT.CURRENT_RITUAL, Strings.isNullOrEmpty(ritualId) ? "" : ritualId);
if (currentRitual != null) {
NBTTagCompound ritualTag = new NBTTagCompound();