We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var bloodhoundPlugin = require('mineflayer-bloodhound');
const bot = mineflayer.createBot({ host: process.argv[2], port: parseInt(process.argv[3]), username: process.argv[4], respawn: false });
bloodhoundPlugin(bot); if (bot.bloodhound) { bot.bloodhound.yaw_correlation_enabled = true; } else { console.error('Bloodhound plugin did not initialize correctly.'); }
It always returns the error message, I could not find a way to load it properly
The text was updated successfully, but these errors were encountered:
No branches or pull requests
var bloodhoundPlugin = require('mineflayer-bloodhound');
const bot = mineflayer.createBot({
host: process.argv[2],
port: parseInt(process.argv[3]),
username: process.argv[4],
respawn: false
});
bloodhoundPlugin(bot);
if (bot.bloodhound) {
bot.bloodhound.yaw_correlation_enabled = true;
} else {
console.error('Bloodhound plugin did not initialize correctly.');
}
It always returns the error message, I could not find a way to load it properly
The text was updated successfully, but these errors were encountered: