Skip to content

Commit bbdd93a

Browse files
PondWaderrom1504
andauthored
Make the place block success check ignore block updates received with no block type changes (#3090)
* Place block fix * Fix lint * Use java 16 for older version tests * Use checkCondition * lint * Old versions CI back to Java 1.8 to see if it magically works now * Add comment * Revert change to node 18 --------- Co-authored-by: Romain Beaumont <[email protected]>
1 parent 385fba6 commit bbdd93a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/plugins/place_block.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ function inject (bot) {
1010

1111
let newBlock = bot.blockAt(dest)
1212
if (oldBlock.type === newBlock.type) {
13-
[oldBlock, newBlock] = await onceWithCleanup(bot, `blockUpdate:${dest}`, { timeout: 5000 })
13+
[oldBlock, newBlock] = await onceWithCleanup(bot, `blockUpdate:${dest}`, {
14+
timeout: 5000,
15+
// Condition to wait to receive block update actually changing the block type, in case the bot receives block updates with no changes
16+
// oldBlock and newBlock will both be null when the world unloads
17+
checkCondition: (oldBlock, newBlock) => !oldBlock || !newBlock || oldBlock.type !== newBlock.type
18+
})
1419
}
1520

1621
// blockUpdate emits (null, null) when the world unloads

0 commit comments

Comments
 (0)