From 10a0e62f2316533dd925b910cb97dc65631f5bff Mon Sep 17 00:00:00 2001 From: jmoenig Date: Wed, 8 Dec 2021 14:27:33 +0100 Subject: [PATCH] more syntax tree tweaks --- src/blocks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks.js b/src/blocks.js index 76c00b01..9ea806d9 100644 --- a/src/blocks.js +++ b/src/blocks.js @@ -3828,7 +3828,7 @@ BlockMorph.prototype.copyWithInputs = function (inputs) { if (inp instanceof CommandBlockMorph && entry.nestedBlock) { entry.nestedBlock(inp); } else if (inp instanceof ReporterBlockMorph && - !entry.isStatic) { + (!entry.isStatic || entry instanceof RingMorph)) { slot.replaceInput(entry, inp); } } else {