mindcraft/patches/mineflayer+4.20.1.patch

14 lines
839 B
Diff
Raw Normal View History

2023-12-04 21:33:40 -06:00
diff --git a/node_modules/mineflayer/lib/plugins/place_block.js b/node_modules/mineflayer/lib/plugins/place_block.js
2024-08-24 13:22:36 -05:00
index fdaec6b..08983b6 100644
2023-12-04 21:33:40 -06:00
--- a/node_modules/mineflayer/lib/plugins/place_block.js
+++ b/node_modules/mineflayer/lib/plugins/place_block.js
2024-08-24 13:22:36 -05:00
@@ -11,7 +11,7 @@ function inject (bot) {
2023-12-04 21:33:40 -06:00
let newBlock = bot.blockAt(dest)
if (oldBlock.type === newBlock.type) {
[oldBlock, newBlock] = await onceWithCleanup(bot, `blockUpdate:${dest}`, {
- timeout: 5000,
2024-01-23 17:58:49 -06:00
+ timeout: 500,
2023-12-04 21:33:40 -06:00
// Condition to wait to receive block update actually changing the block type, in case the bot receives block updates with no changes
// oldBlock and newBlock will both be null when the world unloads
checkCondition: (oldBlock, newBlock) => !oldBlock || !newBlock || oldBlock.type !== newBlock.type