mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-01-10 17:30:29 +00:00
Fix incorrect offset in turtle crafting
This means we end up looking at the wrong slots, and thus fail to remove items! Fixes #1918.
This commit is contained in:
parent
c179da28f0
commit
16577783d3
@ -80,7 +80,7 @@ public final class TurtleInventoryCrafting {
|
|||||||
var recipe = candidate.recipe();
|
var recipe = candidate.recipe();
|
||||||
var input = candidate.input();
|
var input = candidate.input();
|
||||||
var xStart = candidate.xStart();
|
var xStart = candidate.xStart();
|
||||||
var yStart = candidate.xStart();
|
var yStart = candidate.yStart();
|
||||||
|
|
||||||
var player = TurtlePlayer.get(turtle).player();
|
var player = TurtlePlayer.get(turtle).player();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user