Skip to content
New issue

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

Bot digging 2 times when using a tool in 1.21.4 #3618

Open
1 task done
ErneTalu opened this issue Mar 23, 2025 · 2 comments
Open
1 task done

Bot digging 2 times when using a tool in 1.21.4 #3618

ErneTalu opened this issue Mar 23, 2025 · 2 comments
Labels
possible bug Stage1 just created by someone new to the project, we don't know yet if it deserves an implementation / a f

Comments

@ErneTalu
Copy link

ErneTalu commented Mar 23, 2025

  • The FAQ doesn't contain a resolution to my issue

Versions

  • mineflayer: 4.26
  • server: vanilla / 1.21.4
  • node: v20.16.0

Detailed description of a problem

When the bot mines a block with tool, it cancels digging at block's last health. Then the bot starts breaking again, but very slowly, as if it were using its hand. But there's nothing wrong if it's just use is hand, it breaks normally.

What did you try yet?

I tried all of pickaxes to stone , axe to wood and shovel to dirt. But all restarted digging again instead of hand

Your current code

/*
const Vec3 = require('vec3');

module.exports = function (bot, owner) {
  return {
    start: () => {
      dig(bot);
    }
  }
};

async function dig(bot)
{
  let blockPosition = bot.entity.position.offset(0, -1, 0);
  let block = bot.blockAt(blockPosition);

  let promise = bot.dig(block);
  await promise;
  bot.chat("Dug.");
}

*/

Expected behavior

Block should be break normally once with tools

Additional context

Forget about module exports, they have no relevance about this error

@ErneTalu ErneTalu added possible bug Stage1 just created by someone new to the project, we don't know yet if it deserves an implementation / a f labels Mar 23, 2025
@ErneTalu
Copy link
Author

Now I tried it with 1.16.5 and it works well. But 1.21.4 dig is broke rn

@ErneTalu ErneTalu changed the title Bot digging 2 times when using a tool Bot digging 2 times when using a tool in 1.21.x Mar 26, 2025
@ErneTalu ErneTalu changed the title Bot digging 2 times when using a tool in 1.21.x Bot digging 2 times when using a tool in 1.21.4 Mar 26, 2025
@0leg2281337
Copy link

0leg2281337 commented Mar 26, 2025

I have the same bug. It is broken on 1.21.4 too and works fine on 1.16.5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
possible bug Stage1 just created by someone new to the project, we don't know yet if it deserves an implementation / a f
Projects
None yet
Development

No branches or pull requests

2 participants