minor tweaks

This commit is contained in:
kepler155c@gmail.com
2019-07-08 00:15:50 -04:00
parent b86f32b83a
commit d2e25cb951
5 changed files with 7 additions and 11 deletions

View File

@@ -131,7 +131,7 @@ local function run(member, point)
local function emptySlots(retain, pt)
local slots = turtle.getFilledSlots()
for _,slot in pairs(slots) do
if not retain[slot.key] then
if not retain[slot.key] and not slot.name:find('turtle') then
turtle.select(slot.index)
if pt then
turtle.dropAt(pt, 64)