diff --git a/api/src/main/java/net/momirealms/customcrops/api/core/world/CustomCropsBlockStateImpl.java b/api/src/main/java/net/momirealms/customcrops/api/core/world/CustomCropsBlockStateImpl.java index 8a3a21f..d0f9e0b 100644 --- a/api/src/main/java/net/momirealms/customcrops/api/core/world/CustomCropsBlockStateImpl.java +++ b/api/src/main/java/net/momirealms/customcrops/api/core/world/CustomCropsBlockStateImpl.java @@ -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