We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de4244 commit 71d4337Copy full SHA for 71d4337
src/engine/blocks.js
@@ -455,9 +455,11 @@ class Blocks {
455
break;
456
case 'delete':
457
// Don't accept delete events for missing blocks,
458
- // or shadow blocks being obscured.
459
- if (!this._blocks.hasOwnProperty(e.blockId) ||
460
- this._blocks[e.blockId].shadow) {
+ // or most shadow blocks being obscured.
+ if (
+ !this._blocks.hasOwnProperty(e.blockId) ||
461
+ (this._blocks[e.blockId].shadow && this._blocks[e.blockId].opcode.startsWith("argument_reporter_"))
462
+ ) {
463
return;
464
}
465
// If this block is the initial block of a script, inform any runtime to forget about glows
0 commit comments