Skip to content

Commit

Permalink
Fixed brush interrupt
Browse files Browse the repository at this point in the history
  • Loading branch information
SIsilicon committed Mar 3, 2024
1 parent 5650d01 commit 0188e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/shapes/base_shape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export abstract class Shape {
} else {
block = dimension.getBlock(blockLoc);
}
} while (!block || !Jobs.inContext());
} while (!block && Jobs.inContext());
if (!activeMask.empty() && !activeMask.matchesBlock(block)) continue;
blocksAndChunks.push(block);
blocksAffected++;
Expand Down

0 comments on commit 0188e7a

Please sign in to comment.