1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-17 00:37:39 +00:00

bugssss...

This commit is contained in:
kepler155c@gmail.com
2017-09-28 06:33:19 -04:00
parent 5969b71dbe
commit 2af6f098c8
3 changed files with 6 additions and 3 deletions

View File

@@ -233,9 +233,9 @@ function turtle.dropDown(count, slot) return _drop(actions.down, count, slot)
function turtle.refuel(qtyOrName, qty)
if not qtyOrName or type(qtyOrName) == 'number' then
return turtle.native.refuel(qtyOrName)
return turtle.native.refuel(qtyOrName or 64)
end
return inventoryAction(turtle.native.refuel, qtyOrName, qty)
return inventoryAction(turtle.native.refuel, qtyOrName, qty or 64)
end
--[[