Added check for pathing

This commit is contained in:
Lucas Arden 2022-07-24 21:37:45 -07:00
parent 4e2095d251
commit d7fc916d20
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public final class BackfillProcess extends BaritoneProcessHelper {
}
private void amIBreakingABlockHMMMMMMM() {
if (!ctx.getSelectedBlock().isPresent()) {
if (!ctx.getSelectedBlock().isPresent() || !baritone.getPathingBehavior().isPathing()) {
return;
}
blocksToReplace.put(ctx.getSelectedBlock().get(), ctx.world().getBlockState(ctx.getSelectedBlock().get()));