update NBT ignore list, fixes #907 and fixes #895

This commit is contained in:
way2muchnoise
2017-01-24 00:37:26 +01:00
parent 03031e19fd
commit 0e45cf9fb8

View File

@@ -174,9 +174,19 @@ public class Comparer implements IComparer {
stack.getTagCompound().removeTag("isStub"); stack.getTagCompound().removeTag("isStub");
// Capacitors // Capacitors
stack.getTagCompound().removeTag("Energy"); stack.getTagCompound().removeTag("Energy");
break; // Painted
case "minecraft": stack.getTagCompound().removeTag("paintSource__null");
stack.getTagCompound().removeTag("RepairCost"); stack.getTagCompound().removeTag("paintSource");
// Sided config
stack.getTagCompound().removeTag("faceModes__null");
stack.getTagCompound().removeTag("faceModes");
// Tank
stack.getTagCompound().removeTag("tank");
stack.getTagCompound().removeTag("voidMode");
stack.getTagCompound().removeTag("inventory");
// Name
stack.getTagCompound().removeTag("display");
stack.getTagCompound().removeTag("eio.abstractMachine");
break; break;
case "simplyjetpacks": case "simplyjetpacks":
stack.getTagCompound().removeTag("sjData"); stack.getTagCompound().removeTag("sjData");
@@ -192,6 +202,13 @@ public class Comparer implements IComparer {
case "storagedrawers": case "storagedrawers":
stack.getTagCompound().removeTag("material"); stack.getTagCompound().removeTag("material");
break; break;
case "fluxnetworks":
stack.getTagCompound().removeTag("dropped");
stack.getTagCompound().removeTag("energy");
break;
case "minecraft":
stack.getTagCompound().removeTag("RepairCost");
break;
} }
} }