summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-25 01:34:58 +0100
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-25 01:34:58 +0100
commit453d20a124a81bbd26ede4f405298e0ede3f23e4 (patch)
tree93f6f74150a8fc03fe2d35b0d853e3416c033ca5 /src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java
parent1db974998c4e5242cd2603020e6c8ebfea5b454e (diff)
- 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
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/CreativeTabLiquids.java4
1 files changed, 2 insertions, 2 deletions
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)));
}
}