diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-02 16:12:22 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-02 16:12:22 +1000 |
commit | 6391f8fb780be5ff6c792d3072f45c12bc498351 (patch) | |
tree | 656009da05e6287da8c662c1d4b28f2727600e48 /src/Java/gtPlusPlus/xmod/gregtech/common | |
parent | 52948f0a38884dc9f0df4bb3ab93b6079ca39bc1 (diff) | |
download | GT5-Unofficial-6391f8fb780be5ff6c792d3072f45c12bc498351.tar.gz GT5-Unofficial-6391f8fb780be5ff6c792d3072f45c12bc498351.tar.bz2 GT5-Unofficial-6391f8fb780be5ff6c792d3072f45c12bc498351.zip |
+ Added a Dev environment Check.
$ Fixed Hellish Fire being invisible.
% Changed Hellish Fire's particles.
% Changed the use of the Forestry child mod to be the GT++ mod.
% Tweaked texture on Industrial Sifter Multiblock.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java index 8b3fe7b0ef..5ce8f94068 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java @@ -20,7 +20,6 @@ import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.base.Gregtech import gtPlusPlus.xmod.gregtech.common.blocks.textures.TexturesGtBlock; import net.minecraft.block.Block; import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.init.Blocks; import net.minecraft.item.ItemStack; import net.minecraftforge.common.util.ForgeDirection; @@ -59,7 +58,7 @@ extends GregtechMeta_MultiBlockBase { @Override public ITexture[] getTexture(final IGregTechTileEntity aBaseMetaTileEntity, final byte aSide, final byte aFacing, final byte aColorIndex, final boolean aActive, final boolean aRedstone) { if (aSide == aFacing) { - return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[78], new GT_RenderedTexture(aActive ? TexturesGtBlock.Overlay_Machine_Diesel_Vertical_Active : TexturesGtBlock.Overlay_Machine_Diesel_Vertical)}; + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[78], new GT_RenderedTexture(aActive ? TexturesGtBlock.Overlay_Machine_Diesel_Horizontal_Active : TexturesGtBlock.Overlay_Machine_Diesel_Horizontal)}; } return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[78]}; } @@ -227,6 +226,9 @@ extends GregtechMeta_MultiBlockBase { if (!aBaseMetaTileEntity.getAirOffset(xDir, 1, zDir)) { return false; } + + Utils.LOG_INFO("Checking structure for Industrial Sifter."); + int tAmount = 0; controller = false; for (int i = -2; i < 3; i++) { |