Bug där det inte funkar som jar

This commit is contained in:
lov3b 2022-03-30 20:05:23 +02:00
parent 7d1155390d
commit 325cb26e41

View File

@ -30,7 +30,7 @@ public abstract class Piece {
protected void setPieceIcon(String className) throws IOException {
String colorName = isWhite ? "White" : "Black";
String fileName = colorName + className + ".png";
InputStream is = getClass().getResourceAsStream("../img/" + fileName);
InputStream is = getClass().getResourceAsStream("/img/" + fileName);
icon = ImageIO.read(is);
}