3
0
Mirror von https://github.com/Moulberry/AxiomPaperPlugin.git synchronisiert 2024-09-29 07:50:05 +02:00

Backport old method of creating ResourceLocations

Dieser Commit ist enthalten in:
Moulberry 2024-06-27 02:46:13 +08:00
Ursprung 205bc575e8
Commit ae6868911a

Datei anzeigen

@ -12,11 +12,11 @@ public class VersionHelper {
}
public static ResourceLocation createResourceLocation(String composed) {
return ResourceLocation.parse(composed);
return new ResourceLocation(composed);
}
public static ResourceLocation createResourceLocation(String namespace, String path) {
return ResourceLocation.fromNamespaceAndPath(namespace, path);
return new ResourceLocation(namespace, path);
}
}