From 449b1d0540c5e84619ce4f8ce0655a6627eb9b4e Mon Sep 17 00:00:00 2001 From: Baitinq Date: Wed, 15 Feb 2023 12:05:44 +0100 Subject: Pathfinding: Disable parkour and set maxDropDown=3 --- src/main.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/main.ts b/src/main.ts index c6bf915..6665e9a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -52,6 +52,8 @@ bot.loadPlugin(autoeat) bot.once('spawn', () => { mineflayerViewer(bot, { firstPerson: true, port: 3000 }); const defaultMove = new Movements(bot); + defaultMove.allowParkour = false; + defaultMove.maxDropDown = 3; (bot as any).autoEat.options.priority = 'saturation'; (bot as any).autoEat.options.startAt = 16; -- cgit 1.4.1