blacklist chests
This commit is contained in:
@@ -170,7 +170,12 @@ local function run(member, point)
|
|||||||
turtle.pathfind(Point.above(topPoint))
|
turtle.pathfind(Point.above(topPoint))
|
||||||
turtle.set({
|
turtle.set({
|
||||||
movementStrategy = 'goto',
|
movementStrategy = 'goto',
|
||||||
digPolicy = 'turtleSafe',
|
digPolicy = 'blacklist',
|
||||||
|
blacklist = {
|
||||||
|
'turtle',
|
||||||
|
'chest',
|
||||||
|
'shulker',
|
||||||
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -180,7 +185,12 @@ local function run(member, point)
|
|||||||
turtle.reset()
|
turtle.reset()
|
||||||
turtle.set({
|
turtle.set({
|
||||||
attackPolicy = 'attack',
|
attackPolicy = 'attack',
|
||||||
digPolicy = 'turtleSafe',
|
digPolicy = 'blacklist',
|
||||||
|
blacklist = {
|
||||||
|
'turtle',
|
||||||
|
'chest',
|
||||||
|
'shulker',
|
||||||
|
},
|
||||||
movementStrategy = 'goto',
|
movementStrategy = 'goto',
|
||||||
point = point,
|
point = point,
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user