Fixed bottom textures
This commit is contained in:
parent
dec2c68e86
commit
a386a35ead
14 changed files with 27 additions and 82 deletions
|
@ -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));
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue