Use correct method for mappings file loading

This commit is contained in:
FlorianMichael 2024-03-24 12:33:34 +01:00
parent 1d19987cc4
commit 315e81c286
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class AprilFoolsMappings extends BackwardsMappings {
@Override
protected @Nullable CompoundTag readMappingsFile(String name) {
return LOADER.loadNBT(name);
return LOADER.loadNBTFromDir(name);
}
@Override