Precision Sawmill textures
This commit is contained in:
parent
5dfee9ec7a
commit
dd8e77d918
6 changed files with 14 additions and 5 deletions
|
@ -102,6 +102,8 @@ import cpw.mods.fml.relauncher.SideOnly;
|
|||
* 1:1: Chemical Oxidizer
|
||||
* 1:2: Chemical Infuser
|
||||
* 1:3: Chemical Injection Chamber
|
||||
* 1:4: Electrolytic Separator
|
||||
* 1:5: Precision Sawmill
|
||||
* @author AidanBrady
|
||||
*
|
||||
*/
|
||||
|
@ -161,9 +163,9 @@ public class BlockMachine extends BlockContainer implements ISpecialBounds
|
|||
icons[3][0] = register.registerIcon("mekanism:ChemicalInjectionChamberFrontOff");
|
||||
icons[3][1] = register.registerIcon("mekanism:ChemicalInjectionChamberFrontOn");
|
||||
icons[3][2] = register.registerIcon("mekanism:SteelCasing");
|
||||
icons[4][0] = register.registerIcon("mekanism:ChemicalInjectionChamberFrontOff");
|
||||
icons[4][1] = register.registerIcon("mekanism:ChemicalInjectionChamberFrontOn");
|
||||
icons[4][2] = register.registerIcon("mekanism:SteelCasing");
|
||||
icons[5][0] = register.registerIcon("mekanism:PrecisionSawmillFrontOff");
|
||||
icons[5][1] = register.registerIcon("mekanism:PrecisionSawmillFrontOn");
|
||||
icons[5][2] = register.registerIcon("mekanism:SteelCasing");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -572,7 +574,7 @@ public class BlockMachine extends BlockContainer implements ISpecialBounds
|
|||
}
|
||||
else if(blockID == Mekanism.machineBlock2ID)
|
||||
{
|
||||
if(metadata == 2 || metadata == 3)
|
||||
if(metadata == 3 || metadata == 5)
|
||||
{
|
||||
if(side == tileEntity.facing)
|
||||
{
|
||||
|
|
|
@ -74,6 +74,8 @@ import cpw.mods.fml.relauncher.SideOnly;
|
|||
* 1:1: Chemical Oxidizer
|
||||
* 1:2: Chemical Infuser
|
||||
* 1:3: Chemical Injection Chamber
|
||||
* 1:4: Electrolytic Separator
|
||||
* 1:5: Precision Sawmill
|
||||
* @author AidanBrady
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -228,7 +228,7 @@ public class TileEntityChargepad extends TileEntityElectricBlock implements IAct
|
|||
@Override
|
||||
public float getVolumeMultiplier()
|
||||
{
|
||||
return 0.7F;
|
||||
return 0.4F;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue