修复喷涂增产剂的物品会卡住储物仓垃圾桶的问题

Fix issue where items with productivity spray get stuck in storage dustbin
This commit is contained in:
SSSSSSSan
2026-03-16 01:36:09 +08:00
committed by soarqin
parent f7fc9aaab0
commit 7e9f9ee1ce
3 changed files with 98 additions and 12 deletions
+2 -2
View File
@@ -225,11 +225,11 @@ public static class BeltSignal
int itemId;
if ((itemId = cargoPath.TryPickItem(belt.segIndex + belt.segPivotOffset - 5, 12, out var stack, out _)) <= 0) continue;
consumeRegister[itemId] += stack;
Dustbin.CalcGetSands(itemId, stack);
Dustbin.CalcGetSands(itemId, stack, 0);
}
}
})
);
return matcher.InstructionEnumeration();
}
}
}