From 39a3c723c7ae280dda623df611df00ce0bc18d7c Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Sat, 6 Sep 2014 01:26:17 -0500 Subject: [PATCH] Fixed a bug where the quartz wrench stopped rotating blocks. --- items/tools/quartz/ToolQuartzWrench.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/items/tools/quartz/ToolQuartzWrench.java b/items/tools/quartz/ToolQuartzWrench.java index f29b15b5..55178961 100644 --- a/items/tools/quartz/ToolQuartzWrench.java +++ b/items/tools/quartz/ToolQuartzWrench.java @@ -32,7 +32,7 @@ public class ToolQuartzWrench extends AEBaseItem implements IAEWrench, IToolWren if ( b != null && !player.isSneaking() && Platform.hasPermissions( new DimensionalCoord( world, x, y, z ), player ) ) { if ( Platform.isClient() ) - return true; + return !world.isRemote; ForgeDirection mySide = ForgeDirection.getOrientation( side ); if ( b.rotateBlock( world, x, y, z, mySide ) )