| import { Bot } from 'mineflayer' |
| import { CollectBlock } from './CollectBlock' |
| import { pathfinder as pathfinderPlugin } from 'mineflayer-pathfinder' |
| import { plugin as toolPlugin } from 'mineflayer-tool' |
|
|
| export function plugin (bot: Bot): void { |
| |
| bot.collectBlock = new CollectBlock(bot) |
|
|
| |
| setTimeout(() => loadPathfinderPlugin(bot), 0) |
| setTimeout(() => loadToolPlugin(bot), 0) |
| } |
|
|
| function loadPathfinderPlugin (bot: Bot): void { |
| if (bot.pathfinder != null) return |
| bot.loadPlugin(pathfinderPlugin) |
| } |
|
|
| function loadToolPlugin (bot: Bot): void { |
| if (bot.tool != null) return |
| bot.loadPlugin(toolPlugin) |
| } |
|
|
| export { CollectBlock, Callback, CollectOptions } from './CollectBlock' |
|
|