9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 10:39:07 +00:00

Merge pull request #990 from CrazyDev05/oraxen_implementation_fix

This commit is contained in:
Brian Fopiano
2023-04-11 00:06:06 -04:00
committed by GitHub

View File

@@ -7,7 +7,7 @@ public record Identifier(String namespace, String key) {
private static final String DEFAULT_NAMESPACE = "minecraft";
public static Identifier fromString(String id) {
String[] strings = id.split(":", 1);
String[] strings = id.split(":", 2);
if(strings.length == 1) {
return new Identifier(DEFAULT_NAMESPACE, strings[0]);
} else {