Skip to content

Commit

Permalink
fix access level issue
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Apr 2, 2014
1 parent 7f51529 commit a83a245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tmechworks/blocks/RedstoneMachine.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ public void onNeighborBlockChange (World world, int x, int y, int z, Block neigh
public int getIndirectPowerLevelTo (World world, int x, int y, int z, int side)
{
// implementation of isBlockNormalCube which is client only for some reason these are both sides
if (world.getBlock(x, y, z).blockMaterial.blocksMovement() && this.renderAsNormalBlock())
if (world.getBlock(x, y, z).getMaterial().blocksMovement() && this.renderAsNormalBlock())
{
return world.getBlockPowerInput(x, y, z);
}
Expand Down

0 comments on commit a83a245

Please sign in to comment.