Skip to content

Commit

Permalink
Fix Item Splitters incorrectly matching items
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Nov 17, 2024
1 parent edf6b85 commit c56a084
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion changelog-next.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Fixed Pipes not being able to pull Honey from Bee Hives if they didn't face north.
- Fixed Pipes not being able to pull Honey from Bee Hives if they didn't face north.
- Fixed Item Splitters thinking that left and right filters are equal when they aren't.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ org.gradle.parallel=true
loader_version=0.16.9

# Mod Properties
mod_version = 0.5.1
mod_version = 0.5.2
maven_group = eu.pb4
archives_base_name = polyfactory

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SimpleItemFilter that = (SimpleItemFilter) o;
return that.item.isEmpty() == this.item.isEmpty() && ItemStack.areItemsAndComponentsEqual(that.item, that.item);
return ItemStack.areItemsAndComponentsEqual(that.item, this.item);
}

@Override
Expand Down

0 comments on commit c56a084

Please sign in to comment.