diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-10-11 18:27:54 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-10-11 18:27:54 +0100 |
commit | d4d38f40f4500c3dfa218b516fc7621d64bc1759 (patch) | |
tree | 599ff65b5b3a3033df43463519f0cbce712e52ea /src/Java/gtPlusPlus/core/handler | |
parent | 4a2fa070a2ae91173cf15785c63b4090016323d4 (diff) | |
download | GT5-Unofficial-d4d38f40f4500c3dfa218b516fc7621d64bc1759.tar.gz GT5-Unofficial-d4d38f40f4500c3dfa218b516fc7621d64bc1759.tar.bz2 GT5-Unofficial-d4d38f40f4500c3dfa218b516fc7621d64bc1759.zip |
+ Added Round-Robinator.
Diffstat (limited to 'src/Java/gtPlusPlus/core/handler')
-rw-r--r-- | src/Java/gtPlusPlus/core/handler/GuiHandler.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/handler/GuiHandler.java b/src/Java/gtPlusPlus/core/handler/GuiHandler.java index 67493d7964..2141210650 100644 --- a/src/Java/gtPlusPlus/core/handler/GuiHandler.java +++ b/src/Java/gtPlusPlus/core/handler/GuiHandler.java @@ -54,6 +54,7 @@ public class GuiHandler implements IGuiHandler { public static final int GUI13 = 12; // Decayables Chest public static final int GUI14 = 13; // Super Jukebox public static final int GUI15 = 14; // Pest Killer + public static final int GUI16 = 15; // Round-Robinator public static void init() { @@ -102,6 +103,8 @@ public class GuiHandler implements IGuiHandler { return new Container_SuperJukebox(player.inventory, (TileEntitySuperJukebox) te); } else if (ID == GUI15) { return new Container_PestKiller(player.inventory, (TileEntityPestKiller) te); + } else if (ID == GUI16) { + return new Container_RoundRobinator(player.inventory, (TileEntityRoundRobinator) te); } } @@ -162,7 +165,9 @@ public class GuiHandler implements IGuiHandler { return new GUI_SuperJukebox(player.inventory, (TileEntitySuperJukebox) te); } else if (ID == GUI15) { return new GUI_PestKiller(player.inventory, (TileEntityPestKiller) te); - } + } else if (ID == GUI16) { + return new GUI_RoundRobinator(player.inventory, (TileEntityRoundRobinator) te); + } } if (ID == GUI9) { |