Add override and correct default method for fromNative

- Fixes #1370
This commit is contained in:
dordsor21
2021-10-20 13:47:55 +01:00
parent e7a6c3e58c
commit 8ed4736066
2 changed files with 5 additions and 1 deletions

View File

@ -298,7 +298,10 @@ public interface BukkitImplAdapter<T> extends IBukkitAdapter {
}
default T fromNativeBinary(BinaryTag foreign) {
return null;
if (foreign == null) {
return null;
}
return fromNative(AdventureNBTConverter.fromAdventure(foreign));
}
@Nullable