Remove wrong hasTag impl

This commit is contained in:
TheMode 2021-06-18 03:57:23 +02:00
parent 41cb35782e
commit e3fdadb564

View File

@ -81,9 +81,4 @@ class BlockTest implements Block {
public <T> @Nullable T getTag(@NotNull Tag<T> tag) {
return tag.read(compound);
}
@Override
public boolean hasTag(@NotNull Tag<?> tag) {
return compound.containsKey(tag.getKey());
}
}