Skip to content

Commit

Permalink
Fix incorrect offset in turtle crafting
Browse files Browse the repository at this point in the history
This means we end up looking at the wrong slots, and thus fail to remove
items! Fixes #1918.
  • Loading branch information
SquidDev committed Jul 31, 2024
1 parent c179da2 commit 1657778
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static List<ItemStack> craft(ITurtleAccess turtle, int maxCount) {
var recipe = candidate.recipe();
var input = candidate.input();
var xStart = candidate.xStart();
var yStart = candidate.xStart();
var yStart = candidate.yStart();

var player = TurtlePlayer.get(turtle).player();

Expand Down

0 comments on commit 1657778

Please sign in to comment.