Updated version and added maven support for the build-in client version

This commit is contained in:
JKetelaar
2015-09-14 16:43:13 +02:00
parent 3b22952ec2
commit 6bb0545f0c
42 changed files with 16 additions and 17 deletions
@@ -33,7 +33,7 @@ public enum Category
*/
public static BufferedImage getIcon(String s) {
if (images.get(s) == null) {
images.put(s, Images.getResource("/images/category/" + s + ".png"));
images.put(s, Images.getResource("/resources/images/category/" + s + ".png"));
}
return images.get(s);
}
@@ -52,7 +52,7 @@ public enum Category
private static HashMap<String, BufferedImage> images = new HashMap<>();
static {
images.put("script", Images.getResource("/images/category/script.png"));
images.put("script", Images.getResource("/storage/images/category/script.png"));
}
}