Skip to content

Commit

Permalink
Fix Mass Crafting via Recipe Book Protocol with verified recipe input…
Browse files Browse the repository at this point in the history
… matching.
  • Loading branch information
sakura-ryoko committed Nov 12, 2024
1 parent 5fb432d commit 7bfe069
Show file tree
Hide file tree
Showing 7 changed files with 289 additions and 214 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ author = masa
mod_file_name = itemscroller-fabric

# Current mod version
mod_version = 0.25.0-sakura.4
mod_version = 0.25.0-sakura.5

# Required malilib version
malilib_version = 0.22.0-sakura.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ else if (isPickBlock && InputUtils.isRecipeViewOpen() && InventoryUtils.isCrafti
{
recipes.storeCraftingRecipeToCurrentSelection(slot, gui, true, false, mc);
InventoryUtils.clearFirstCraftingGridOfAllItems(gui);
//InventoryUtils.clearCraftingGridCursorStack(gui, mc);
cancel = true;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ else if (key == Hotkeys.STORE_RECIPE.getKeybind())
{
recipes.storeCraftingRecipeToCurrentSelection(slot, gui, true, true, mc);
InventoryUtils.clearFirstCraftingGridOfAllItems(gui);
//InventoryUtils.clearCraftingGridCursorStack(gui, mc);
return true;
}
}
Expand Down
Loading

0 comments on commit 7bfe069

Please sign in to comment.