From 918d763dabd82d47db739a1b0a51c01f0803adc0 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Tue, 5 Feb 2019 04:22:53 +0000 Subject: + 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. --- .../gregtech/api/metatileentity/custom/power/BaseCustomPower_MTE.java | 2 +- .../api/metatileentity/custom/power/MetaTileEntityCustomPower.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/BaseCustomPower_MTE.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/BaseCustomPower_MTE.java index 0b8cb10606..a4440114e8 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/BaseCustomPower_MTE.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/BaseCustomPower_MTE.java @@ -10,7 +10,7 @@ public class BaseCustomPower_MTE extends BaseCustomTileEntity { public BaseCustomPower_MTE() { super(); - Logger.INFO("Created new BaseCustomPower_MTE"); + Logger.MACHINE_INFO("Created new BaseCustomPower_MTE"); } public long injectEnergyUnits(byte aSide, long aVoltage, long aAmperage) { diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/MetaTileEntityCustomPower.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/MetaTileEntityCustomPower.java index ba98af25f7..8b7ccc202a 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/MetaTileEntityCustomPower.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/custom/power/MetaTileEntityCustomPower.java @@ -29,7 +29,7 @@ public abstract class MetaTileEntityCustomPower extends CustomMetaTileBase { public void doExplosion(long aExplosionPower) { if (MathUtils.randInt(1, 10) > 0) { - Logger.INFO("Machine tried to explode, let's stop that. xo"); + //Logger.INFO("Machine tried to explode, let's stop that. xo"); return; } @@ -70,7 +70,7 @@ public abstract class MetaTileEntityCustomPower extends CustomMetaTileBase { public void onExplosion() { if (MathUtils.randInt(1, 10) > 0) { - Logger.INFO("Machine tried to explode, let's stop that. xo"); + //Logger.INFO("Machine tried to explode, let's stop that. xo"); return; } // TODO Auto-generated method stub -- cgit