mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-10 06:52:00 -05:00
Fix naming of MOVE event in index.js
This commit is contained in:
parent
9fef9d7edd
commit
e5b677c7f6
1 changed files with 2 additions and 2 deletions
|
@ -49,9 +49,9 @@ function VirtualMachine () {
|
|||
instance.runtime.moveBlock({
|
||||
id: e.blockId,
|
||||
oldParent: e.oldParentId,
|
||||
oldField: e.oldInputName,
|
||||
oldInput: e.oldInputName,
|
||||
newParent: e.newParentId,
|
||||
newField: e.newInputName
|
||||
newInput: e.newInputName
|
||||
});
|
||||
break;
|
||||
case 'delete':
|
||||
|
|
Loading…
Reference in a new issue