9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-20 07:29:27 +00:00

Update CustomCropsBlockStateImpl.java

This commit is contained in:
XiaoMoMi
2024-09-07 01:12:45 +08:00
parent 262209eda8
commit 0397b71827

View File

@@ -74,7 +74,7 @@ public class CustomCropsBlockStateImpl implements CustomCropsBlockState {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CustomCropsBlockStateImpl that = (CustomCropsBlockStateImpl) o;
return Objects.equals(compoundMap, that.compoundMap);
return compoundMap.equals(that.compoundMap);
}
@Override