aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/common/compat
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-02-05 04:22:53 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-02-05 04:22:53 +0000
commit918d763dabd82d47db739a1b0a51c01f0803adc0 (patch)
tree80c1da5b41a79191a7eb63184b2bcc98960aa69c /src/Java/gtPlusPlus/core/common/compat
parent746384b3e3e193558f8506f91f75f5c2df5dec29 (diff)
downloadGT5-Unofficial-918d763dabd82d47db739a1b0a51c01f0803adc0.tar.gz
GT5-Unofficial-918d763dabd82d47db739a1b0a51c01f0803adc0.tar.bz2
GT5-Unofficial-918d763dabd82d47db739a1b0a51c01f0803adc0.zip
+ Added Charge Packs, which can be worn in the Bauble belt slot.
+ Added more recipes for particle related content. + Added recipe for Hydrogen Plasma. + Added Plasma Tanks. + Added Alternative Fusion Reactor. + Added recipe for the Super Jukebox. % Updated Locale files. $ Hopefully made calls to possibly invalid ItemList values safer. $ Fixed Large Mixer not working with fluids correctly. $ Fixed ABS and Adv. EBF not allowing a muffler in the center of the top layer. $ Fixed Fusion bug, making all recipes take 4x longer than originally required. $ Fixed recipes using Redstone Alloy as a material in tiered recipes. (Makes ULV Energy Cores craftable again) $ Fixed Nano Healing Bauble. $ Fixed annoying low transfer rate of Railcraft. (This should be higher when playing with GT anyway, it's now 4x, disabled in ASM config). $ Fixed the fact that Portable tanks were still portable in GTNH.
Diffstat (limited to 'src/Java/gtPlusPlus/core/common/compat')
-rw-r--r--src/Java/gtPlusPlus/core/common/compat/COMPAT_Baubles.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/common/compat/COMPAT_Baubles.java b/src/Java/gtPlusPlus/core/common/compat/COMPAT_Baubles.java
index 249ea78ff3..f57c09b62d 100644
--- a/src/Java/gtPlusPlus/core/common/compat/COMPAT_Baubles.java
+++ b/src/Java/gtPlusPlus/core/common/compat/COMPAT_Baubles.java
@@ -2,6 +2,7 @@ package gtPlusPlus.core.common.compat;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.item.ModItems;
+import gtPlusPlus.core.item.bauble.BatteryPackBaseBauble;
import gtPlusPlus.core.item.general.ItemCloakingDevice;
import gtPlusPlus.core.item.general.ItemHealingDevice;
import gtPlusPlus.core.item.general.ItemSlowBuildingRing;
@@ -23,6 +24,17 @@ public class COMPAT_Baubles {
ModItems.itemPersonalCloakingDevice = new ItemCloakingDevice(0);
//itemPersonalCloakingDeviceCharged = new ItemCloakingDevice(0).set;
ModItems.itemPersonalHealingDevice = new ItemHealingDevice();
+
+ try {
+ ModItems.itemChargePack1 = new BatteryPackBaseBauble(6);
+ ModItems.itemChargePack2 = new BatteryPackBaseBauble(7);
+ ModItems.itemChargePack3 = new BatteryPackBaseBauble(8);
+ ModItems.itemChargePack4 = new BatteryPackBaseBauble(9);
+ }
+ catch (Throwable t) {
+ t.printStackTrace();
+ }
+
if (LoadedMods.PlayerAPI){
ModItems.itemSlowBuildingRing = new ItemSlowBuildingRing();
}