aboutsummaryrefslogtreecommitdiff
path: root/src/Java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-07-10 17:57:28 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-07-10 17:57:28 +1000
commit0f8f2eb9af797d2d6afff9b4857200309a87c796 (patch)
treec993d1a4ced88de048f7ede83469b6e8a32bf708 /src/Java
parent1388d8b86df8630f6af1261a8c84c0b7b934c005 (diff)
downloadGT5-Unofficial-0f8f2eb9af797d2d6afff9b4857200309a87c796.tar.gz
GT5-Unofficial-0f8f2eb9af797d2d6afff9b4857200309a87c796.tar.bz2
GT5-Unofficial-0f8f2eb9af797d2d6afff9b4857200309a87c796.zip
+ Added the Working Frame. (No recipe yet)
> This Frame Allows maximum production for your bees.
Diffstat (limited to 'src/Java')
-rw-r--r--src/Java/miscutil/core/xmod/forestry/bees/items/FR_ItemRegistry.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/miscutil/core/xmod/forestry/bees/items/FR_ItemRegistry.java b/src/Java/miscutil/core/xmod/forestry/bees/items/FR_ItemRegistry.java
index 3282950fbe..79636fc9be 100644
--- a/src/Java/miscutil/core/xmod/forestry/bees/items/FR_ItemRegistry.java
+++ b/src/Java/miscutil/core/xmod/forestry/bees/items/FR_ItemRegistry.java
@@ -29,6 +29,7 @@ public class FR_ItemRegistry {
public static MB_ItemFrame hiveFrameAccelerated;
public static MB_ItemFrame hiveFrameVoid;
public static MB_ItemFrame hiveFrameMutagenic;
+ public static MB_ItemFrame haveFrameBusy;
//Extra Bee Frame Items
public static MB_ItemFrame hiveFrameCocoa;
@@ -48,6 +49,7 @@ public class FR_ItemRegistry {
hiveFrameAccelerated = new MB_ItemFrame(MB_FrameType.ACCELERATED);
hiveFrameVoid = new MB_ItemFrame(MB_FrameType.VOID, EnumRarity.rare);
hiveFrameMutagenic = new MB_ItemFrame(MB_FrameType.MUTAGENIC, EnumRarity.epic);
+ haveFrameBusy = new MB_ItemFrame(MB_FrameType.BUSY);
ChestGenHooks.addItem(ChestGenHooks.STRONGHOLD_CORRIDOR, new WeightedRandomChestContent(new ItemStack(hiveFrameVoid), 1, 1, 18));
ChestGenHooks.addItem(ChestGenHooks.STRONGHOLD_LIBRARY, new WeightedRandomChestContent(new ItemStack(hiveFrameVoid), 1, 3, 23));
ChestGenHooks.addItem(ChestGenHooks.PYRAMID_DESERT_CHEST, new WeightedRandomChestContent(new ItemStack(hiveFrameMutagenic), 1, 1, 18));