[HOTFIX] Fix crash for Resource Locations that use mod:something format

This commit is contained in:
2024-06-14 08:12:26 +02:00
parent df24617dd1
commit 931eaa2215

View File

@@ -11,7 +11,7 @@ public class ResourceIdentifier {
}
public ResourceIdentifier(String path) {
this.internal = ResourceLocation.withDefaultNamespace(path);
this.internal = ResourceLocation.parse(path);
}
public String getNamespace() {