1 step toward fixing #928

This commit is contained in:
MauveCloud 2017-03-11 20:04:05 -08:00
parent ca5e41318f
commit 9fba3e22a9

View file

@ -34,7 +34,7 @@ public abstract class GT_Tool
protected static boolean isStateEqual(IBlockState state1, IBlockState state2) { protected static boolean isStateEqual(IBlockState state1, IBlockState state2) {
if(state1.getBlock() != state2.getBlock()) if(state1.getBlock() != state2.getBlock())
return false; return false;
if(!state1.getProperties().equals(state2)) if(!state1.getProperties().equals(state2.getProperties()))
return false; return false;
return true; return true;
} }