This commit is contained in:
Jesse Boyd
2019-06-28 22:43:32 +10:00
parent ccfe274ff5
commit fecb380d44
3 changed files with 4 additions and 6 deletions

View File

@ -346,8 +346,6 @@ public class BlockState implements BlockStateHolder<BlockState>, FawePattern {
return equalsFuzzy((BlockState) obj);
}
private Integer hashCodeCache = null;
@Override
public int hashCode() {
return getOrdinal();

View File

@ -280,7 +280,7 @@ public class BlockType implements FawePattern, Keyed {
@Override
public int hashCode() {
return this.id.hashCode();
return settings.internalId;
}
@Override