SPIGOT-6061: NPE in CraftBlockTag.getHandle()

This commit is contained in:
md_5 2020-08-12 08:44:09 +10:00
parent 9c9fb593f5
commit 62761be294
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -20,6 +20,10 @@ public abstract class CraftTag<N, B extends Keyed> implements Tag<B> {
}
protected net.minecraft.server.Tag<N> getHandle() {
if (handle == null) {
handle = registry.b(tag);
}
return handle;
}