mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-11 23:30:09 -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) {
|
_convertForScratchBlocks (blockInfo, categoryInfo) {
|
||||||
if (blockInfo === '---') {
|
if (blockInfo === '---') {
|
||||||
return this._convertSeparatorForScratchBlocks();
|
return this._convertSeparatorForScratchBlocks(blockInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (blockInfo.blockType === BlockType.BUTTON) {
|
if (blockInfo.blockType === BlockType.BUTTON) {
|
||||||
|
|
Loading…
Reference in a new issue