diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-07-27 11:05:53 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-07-27 11:05:53 +1000 |
commit | 70fb3475418db0048c39db1479b62a92be041314 (patch) | |
tree | 1c807ac6fa57ba0a82ed6db7f92a6513c950303f /src/Java/miscutil/core/item/init | |
parent | be6a82cfa41d0917339168062af8881f4820f258 (diff) | |
download | GT5-Unofficial-70fb3475418db0048c39db1479b62a92be041314.tar.gz GT5-Unofficial-70fb3475418db0048c39db1479b62a92be041314.tar.bz2 GT5-Unofficial-70fb3475418db0048c39db1479b62a92be041314.zip |
+ 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
Diffstat (limited to 'src/Java/miscutil/core/item/init')
-rw-r--r-- | src/Java/miscutil/core/item/init/ItemsIngots.java | 1 | ||||
-rw-r--r-- | src/Java/miscutil/core/item/init/ItemsPlates.java | 3 |
2 files changed, 1 insertions, 3 deletions
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)); } |