Revert "Fix //none removing arbitrary nbt"

This reverts dd0bec8913.
This commit is contained in:
NotMyFault 2019-05-19 20:55:45 +02:00
parent e72a5cf12d
commit e4c1ba3edf

View File

@ -77,11 +77,8 @@ public final class BrushCache {
Map<String, Tag> map; Map<String, Tag> map;
if (nbt == null) { if (nbt == null) {
if (tool == null) { if (tool == null) {
Map<String, Object> raw = nbt.getRaw(); item.setNbtData(null);
if (raw.remove("weBrushJson") != null && raw.isEmpty()) { return tool;
item.setNbtData(null);
}
return null;
} }
nbt = new CompoundTag(map = new HashMap<>()); nbt = new CompoundTag(map = new HashMap<>());
} else { } else {