mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Fix missing arg for extension block separators
This commit is contained in:
parent
254edd48d5
commit
d59c6a0b73
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue