diff options
author | Richard Hendricks <richardhendricks@pobox.com> | 2018-07-21 14:46:42 -0500 |
---|---|---|
committer | Richard Hendricks <richardhendricks@pobox.com> | 2018-07-21 19:35:57 -0500 |
commit | b10ffbbffb71ab223e147a0fe195e5cee0306bd7 (patch) | |
tree | 35e455d0923a3d13c24d31f15a4e5730515e8e87 /src/main/java/gregtech/common/blocks/GT_Block_Casings2.java | |
parent | 3f1dbea050ca43850a006c04cf928a3203ca216c (diff) | |
download | GT5-Unofficial-b10ffbbffb71ab223e147a0fe195e5cee0306bd7.tar.gz GT5-Unofficial-b10ffbbffb71ab223e147a0fe195e5cee0306bd7.tar.bz2 GT5-Unofficial-b10ffbbffb71ab223e147a0fe195e5cee0306bd7.zip |
Revert changes for machine metal support, using different method now via coremod to enable disable.
Diffstat (limited to 'src/main/java/gregtech/common/blocks/GT_Block_Casings2.java')
-rw-r--r-- | src/main/java/gregtech/common/blocks/GT_Block_Casings2.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main/java/gregtech/common/blocks/GT_Block_Casings2.java b/src/main/java/gregtech/common/blocks/GT_Block_Casings2.java index cc14d42f37..04c422e39d 100644 --- a/src/main/java/gregtech/common/blocks/GT_Block_Casings2.java +++ b/src/main/java/gregtech/common/blocks/GT_Block_Casings2.java @@ -1,6 +1,5 @@ package gregtech.common.blocks;
-import gregtech.api.GregTech_API;
import gregtech.api.enums.Dyes;
import gregtech.api.enums.ItemList;
import gregtech.api.enums.Textures;
@@ -57,11 +56,7 @@ public class GT_Block_Casings2 ItemList.Casing_Pipe_TungstenSteel.set(new ItemStack(this, 1, 15));
//Special handler for Pyrolyse Oven Casing
- if (GregTech_API.sUseMachineMetal) {
- Textures.BlockIcons.CASING_BLOCKS[22] = new GT_CopiedBlockTexture(Block.getBlockFromItem(ItemList.Casing_ULV.get(1).getItem()), 6, 0,Dyes.MACHINE_METAL.mRGBa);
- } else {
- Textures.BlockIcons.CASING_BLOCKS[22] = new GT_CopiedBlockTexture(Block.getBlockFromItem(ItemList.Casing_ULV.get(1).getItem()), 6, 0,Dyes.dyeWhite.mRGBa);
- }
+ Textures.BlockIcons.CASING_BLOCKS[22] = new GT_CopiedBlockTexture(Block.getBlockFromItem(ItemList.Casing_ULV.get(1).getItem()), 6, 0,Dyes.MACHINE_METAL.mRGBa);
}
public IIcon getIcon(int aSide, int aMeta) {
|