Fixes #222
This commit is contained in:
parent
65d20ec431
commit
e3da8073ed
1 changed files with 11 additions and 0 deletions
|
@ -64,4 +64,15 @@ public class BlockDigitalChest extends BlockMachineBase {
|
||||||
side == 0 ? this.iconBottom : (side == 0 ? this.iconTop
|
side == 0 ? this.iconBottom : (side == 0 ? this.iconTop
|
||||||
: (side == metadata ? this.iconFront : this.blockIcon));
|
: (side == metadata ? this.iconFront : this.blockIcon));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IIcon getIcon(int side, int meta) {
|
||||||
|
if(side == 1){
|
||||||
|
return this.iconTop;
|
||||||
|
} else if(side == 3){
|
||||||
|
return this.iconFront;
|
||||||
|
} else {
|
||||||
|
return this.blockIcon;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue