1 step toward fixing #928
This commit is contained in:
parent
ca5e41318f
commit
9fba3e22a9
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ public abstract class GT_Tool
|
|||
protected static boolean isStateEqual(IBlockState state1, IBlockState state2) {
|
||||
if(state1.getBlock() != state2.getBlock())
|
||||
return false;
|
||||
if(!state1.getProperties().equals(state2))
|
||||
if(!state1.getProperties().equals(state2.getProperties()))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue