More fixes

This commit is contained in:
cyberpwn 2021-08-25 03:55:54 -04:00
parent ca228ca23e
commit 013d6625d5
2 changed files with 2 additions and 2 deletions

View File

@ -76,5 +76,5 @@ public interface INMSBinding {
return false; return false;
} }
RegistryBlockID<CompoundTag> computeBlockIDRegistry() throws NoSuchFieldException, IllegalAccessException; RegistryBlockID computeBlockIDRegistry() throws NoSuchFieldException, IllegalAccessException;
} }

View File

@ -146,7 +146,7 @@ public class NMSBinding1X implements INMSBinding {
} }
@Override @Override
public RegistryBlockID<CompoundTag> computeBlockIDRegistry() throws NoSuchFieldException, IllegalAccessException { public RegistryBlockID computeBlockIDRegistry() throws NoSuchFieldException, IllegalAccessException {
Iris.error("Cannot use the global data palette! Iris is incapable of using MCA generation on this version of minecraft!"); Iris.error("Cannot use the global data palette! Iris is incapable of using MCA generation on this version of minecraft!");
return null; return null;
} }