From d59c6a0b739f4dc4c77358eab673ea14208b6f54 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford Date: Tue, 2 Apr 2019 15:22:23 -0700 Subject: [PATCH] Fix missing arg for extension block separators --- src/engine/runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/runtime.js b/src/engine/runtime.js index f26d7cdb0..13d64048f 100644 --- a/src/engine/runtime.js +++ b/src/engine/runtime.js @@ -983,7 +983,7 @@ class Runtime extends EventEmitter { */ _convertForScratchBlocks (blockInfo, categoryInfo) { if (blockInfo === '---') { - return this._convertSeparatorForScratchBlocks(); + return this._convertSeparatorForScratchBlocks(blockInfo); } if (blockInfo.blockType === BlockType.BUTTON) {