Fixes #141
This commit is contained in:
parent
cf49f01042
commit
29d47ec37e
16 changed files with 181 additions and 13 deletions
|
@ -79,4 +79,15 @@ public class BlockIndustrialSawmill extends BlockMachineBase {
|
|||
return IC2Items.getItem("advancedMachine").getItem();
|
||||
}
|
||||
|
||||
@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