Make only SkyStone Softer

This commit is contained in:
AlgorithmX2 2014-03-26 01:15:13 -05:00
parent c364fa8ccb
commit f636dad621

View file

@ -41,7 +41,7 @@ public class BlockSkyStone extends AEBaseBlock implements IOrientableBlock
@SubscribeEvent
public void breakFaster(PlayerEvent.BreakSpeed Ev)
{
if ( Ev.block == this && Ev.originalSpeed > 7 || Ev.metadata > 0 )
if ( Ev.block == this && (Ev.originalSpeed > 7 || Ev.metadata > 0) )
Ev.newSpeed /= 0.1;
}