From 453d20a124a81bbd26ede4f405298e0ede3f23e4 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Sat, 25 Apr 2015 01:34:58 +0100 Subject: - Changed the build.gradle file to output more fancy files and proper build names - Fixed a problem with the Golden Object crashing if it doesn't have an object in the Jewelry Modifier GUI - Improved the GUI of the Jewelry Modifier so it keeps the selection even if you re-size the screen and added a button for adding items for Golden Objects --- src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java') diff --git a/src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java b/src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java index bdf57b7..6e6ef29 100644 --- a/src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java +++ b/src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java @@ -36,7 +36,7 @@ public class CreativeTabLiquids extends CreativeTabs @Override public void displayAllReleventItems(List par1List) { - for(int i = 0; i < JewelrycraftUtil.metal.size(); i++) - par1List.add(ItemList.bucket.getModifiedItemStack(JewelrycraftUtil.metal.get(i))); + for(int i = 0; i < JewelrycraftUtil.objects.size(); i++) + par1List.add(ItemList.bucket.getModifiedItemStack(JewelrycraftUtil.objects.get(i))); } } -- cgit v1.2.3