mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 13:57:59 +01:00
Fixed invalid characters in the resource path
This commit is contained in:
parent
72d9fbad70
commit
15d67dad00
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ public class DefaultArmourTextureResolver<T extends LivingEntity> implements IAr
|
||||||
|
|
||||||
String domain = modId.getNamespace();
|
String domain = modId.getNamespace();
|
||||||
|
|
||||||
String path = Paths.get(modId.getPath()).getParent().resolve(defPath.getFileName()).toString();
|
String path = Paths.get(modId.getPath()).getParent().resolve(defPath.getFileName()).toString().replace('\\', '/');
|
||||||
|
|
||||||
Identifier interemId = new Identifier(domain, path);
|
Identifier interemId = new Identifier(domain, path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue