Fixed bottom textures

This commit is contained in:
Gig 2015-05-03 22:27:19 +01:00
parent dec2c68e86
commit a386a35ead
14 changed files with 27 additions and 82 deletions

View file

@ -58,8 +58,10 @@ public class BlockChunkLoader extends BlockMachineBase{
@SideOnly(Side.CLIENT)
public IIcon getIcon(int side, int metadata)
{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop : (side == 0 ? this.iconTop
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}