Skip to content

Commit

Permalink
Merge pull request Sefiraat#143 from Sefiraat/fix/quantum_upgrading
Browse files Browse the repository at this point in the history
Fix quantum upgrading
  • Loading branch information
Sefiraat authored Jul 16, 2023
2 parents a4eeb33 + 1c52c02 commit 4c64a5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<dependency>
<groupId>com.github.Slimefun</groupId>
<artifactId>Slimefun4</artifactId>
<version>934ab822a6</version>
<version>RC-35</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public void craft(@Nonnull BlockMenu menu) {

private boolean testRecipe(ItemStack[] input, ItemStack[] recipe) {
for (int test = 0; test < recipe.length; test++) {
if (!SlimefunUtils.isItemSimilar(input[test], recipe[test], true, false)) {
if (!SlimefunUtils.isItemSimilar(input[test], recipe[test], true, false, false)) {
return false;
}
}
Expand Down

0 comments on commit 4c64a5c

Please sign in to comment.