diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-02-03 21:09:09 +0000 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-02-03 21:09:09 +0000 |
| commit | 3f4c717de5ebc9b942d65ae45ac87c43bdf8a31b (patch) | |
| tree | 15c68c8b61dbd0b7f44937a5c790c4b844e50f58 /java/darkknight/jewelrycraft/client/GuiGuide.java | |
| parent | 73ca377dc01f859dabd7b07738cb7aeb762272b1 (diff) | |
Made a few modifications to some classes, added earrings and bracelets. Improved coloring algorithm and balanced the Thieving Glove
Diffstat (limited to 'java/darkknight/jewelrycraft/client/GuiGuide.java')
| -rw-r--r-- | java/darkknight/jewelrycraft/client/GuiGuide.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/java/darkknight/jewelrycraft/client/GuiGuide.java b/java/darkknight/jewelrycraft/client/GuiGuide.java index 6112d5d..879c9b3 100644 --- a/java/darkknight/jewelrycraft/client/GuiGuide.java +++ b/java/darkknight/jewelrycraft/client/GuiGuide.java @@ -19,10 +19,9 @@ import darkknight.jewelrycraft.block.BlockList; import darkknight.jewelrycraft.container.GuiRectangle; import darkknight.jewelrycraft.container.GuiTab; import darkknight.jewelrycraft.container.GuiTabBlocks; +import darkknight.jewelrycraft.container.GuiTabGemsAndIngots; import darkknight.jewelrycraft.container.GuiTabItems; -import darkknight.jewelrycraft.container.GuiTabJewelsAndModifiers; -import darkknight.jewelrycraft.container.GuiTabNecklaces; -import darkknight.jewelrycraft.container.GuiTabRings; +import darkknight.jewelrycraft.container.GuiTabModifiers; public class GuiGuide extends GuiContainer { @@ -41,7 +40,7 @@ public class GuiGuide extends GuiContainer this.world = world; tabs = new GuiTab[] - { new GuiTabBlocks(0), new GuiTabItems(1), new GuiTabJewelsAndModifiers(2)}; + { new GuiTabBlocks(0), new GuiTabItems(1), new GuiTabGemsAndIngots(2), new GuiTabModifiers(3)}; activeTab = tabs[0]; } |
