mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 00:37:59 +01:00
java.io.FileNotFoundException: minecraft:skins/preview_${profile.getname()}.png
This commit is contained in:
parent
892553838b
commit
834c5c6daa
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ public class LocalTexture {
|
||||||
this.blank = blank;
|
this.blank = blank;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
|
|
||||||
String file = type.name().toLowerCase() + "s/preview_${profile.getName()}.png";
|
String file = String.format("%ss/preview_%s.png", type.name().toLowerCase(), profile.getName());
|
||||||
|
|
||||||
remoteResource = new ResourceLocation(file);
|
remoteResource = new ResourceLocation(file);
|
||||||
textureManager.deleteTexture(remoteResource);
|
textureManager.deleteTexture(remoteResource);
|
||||||
|
|
Loading…
Reference in a new issue