From 70fb3475418db0048c39db1479b62a92be041314 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 27 Jul 2016 11:05:53 +1000 Subject: + Updated Tooltips on all GT5u related blocks. + Added Config options for TC Shard OreDicting, IC2 Recipe Removal and Alternative battery Alloy. $ Fixed the Industrial Centrifuge not handling recipes properly. $ Fixed the Industrial Centrifuge stopping when it's recipe time was < 1. % Moved Config related variables to their own inner class within CORE.java --- src/Java/miscutil/core/item/init/ItemsIngots.java | 1 - src/Java/miscutil/core/item/init/ItemsPlates.java | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'src/Java/miscutil/core/item/init') diff --git a/src/Java/miscutil/core/item/init/ItemsIngots.java b/src/Java/miscutil/core/item/init/ItemsIngots.java index 9afb364c44..981dfecf47 100644 --- a/src/Java/miscutil/core/item/init/ItemsIngots.java +++ b/src/Java/miscutil/core/item/init/ItemsIngots.java @@ -20,7 +20,6 @@ public class ItemsIngots { ModItems.itemIngotTantalloy60 = new BaseItemIngot("itemIngotTantalloy60", "Tantalloy-60", Utils.rgbtoHexValue(68, 75, 166)); ModItems.itemIngotTantalloy61 = new BaseItemIngot("itemIngotTantalloy61", "Tantalloy-61", Utils.rgbtoHexValue(122, 135, 196)); ModItems.itemIngotBloodSteel = new BaseItemIngot("itemIngotBloodSteel", "Blood Steel", Utils.rgbtoHexValue(142, 28, 0)); - ModItems.itemIngotBatteryAlloy = new BaseItemIngot("itemIngotBatteryAlloy", "Battery Alloy", Utils.rgbtoHexValue(35, 228, 141)); //Hot Ingots diff --git a/src/Java/miscutil/core/item/init/ItemsPlates.java b/src/Java/miscutil/core/item/init/ItemsPlates.java index c92b77e506..878b6cbb4d 100644 --- a/src/Java/miscutil/core/item/init/ItemsPlates.java +++ b/src/Java/miscutil/core/item/init/ItemsPlates.java @@ -15,8 +15,7 @@ public class ItemsPlates { ModItems.itemPlateStaballoy = new BaseItemPlate("itemPlateStaballoy", "Staballoy", Utils.rgbtoHexValue(68, 75, 66)); ModItems.itemPlateBloodSteel = new BaseItemPlate("itemPlateBloodSteel", "Blood Steel", Utils.rgbtoHexValue(142, 28, 0)); ModItems.itemPlateTantalloy60 = new BaseItemPlate("itemPlateTantalloy60", "Tantalloy-60", Utils.rgbtoHexValue(68, 75, 166)); - ModItems.itemPlateTantalloy61 = new BaseItemPlate("itemPlateTantalloy61", "Tantalloy-61", Utils.rgbtoHexValue(122, 135, 196)); - ModItems.itemPlateBatteryAlloy = new BaseItemPlate("itemPlateBatteryAlloy", "Battery Alloy", Utils.rgbtoHexValue(35, 228, 141)); + ModItems.itemPlateTantalloy61 = new BaseItemPlate("itemPlateTantalloy61", "Tantalloy-61", Utils.rgbtoHexValue(122, 135, 196)); } -- cgit