entities - display on overlay

This commit is contained in:
kepler155c@gmail.com
2018-12-16 23:27:31 -05:00
parent e0c45bd87c
commit c08e2a560a
2 changed files with 12 additions and 12 deletions

View File

@@ -98,9 +98,9 @@ local function dropOff()
inv = turtle.getSummedInventory()
for _, slot in pairs(inv) do
if slot.count >= 16 or turtle.getSlot(8).count > 0 then
local chests = findChests()
for c in Point.iterateClosest(turtle.point, chests) do
if slot.name ~= 'plethora:module' then
if slot.name ~= 'plethora:module' then
local chests = findChests()
for c in Point.iterateClosest(turtle.point, chests) do
if turtle.dropDownAt(c, slot.name) then
chest = c
break