diff --git a/lib/loader.js b/lib/loader.js index 79e2649245..4b631b85c2 100644 --- a/lib/loader.js +++ b/lib/loader.js @@ -63,7 +63,7 @@ function createBot (options = {}) { options.username = options.username ?? 'Player' options.version = options.version ?? false options.plugins = options.plugins ?? {} - options.hideErrors = options.hideErrors ?? true + options.hideErrors = options.hideErrors ?? false options.logErrors = options.logErrors ?? true options.loadInternalPlugins = options.loadInternalPlugins ?? true options.client = options.client ?? null diff --git a/test/internalTest.js b/test/internalTest.js index e67b322432..14a9180cec 100644 --- a/test/internalTest.js +++ b/test/internalTest.js @@ -79,7 +79,6 @@ for (const supportedVersion of mineflayer.testedVersions) { } return loginPacket } - bot.on('error', e => console.log(e)) done() }) })