Archiviert
13
0

Don't compare NBT names - they are no longer persistant.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2013-12-04 15:55:17 +01:00
Ursprung c137640fee
Commit 65e665aa59
2 geänderte Dateien mit 2 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -227,8 +227,7 @@ class WrappedElement<TType> implements NbtWrapper<TType> {
// Make sure we're dealing with the same type
if (other.getType().equals(getType())) {
return Objects.equal(getName(), other.getName()) &&
Objects.equal(getValue(), other.getValue());
return Objects.equal(getValue(), other.getValue());
}
}
return false;