blacklist chests

This commit is contained in:
kepler155c@gmail.com
2019-04-24 22:10:05 -04:00
parent 5892da5d1b
commit fff680d202

View File

@@ -170,7 +170,12 @@ local function run(member, point)
turtle.pathfind(Point.above(topPoint))
turtle.set({
movementStrategy = 'goto',
digPolicy = 'turtleSafe',
digPolicy = 'blacklist',
blacklist = {
'turtle',
'chest',
'shulker',
},
})
end
@@ -180,7 +185,12 @@ local function run(member, point)
turtle.reset()
turtle.set({
attackPolicy = 'attack',
digPolicy = 'turtleSafe',
digPolicy = 'blacklist',
blacklist = {
'turtle',
'chest',
'shulker',
},
movementStrategy = 'goto',
point = point,
})