mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-25 09:01:07 -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({
|
instance.runtime.moveBlock({
|
||||||
id: e.blockId,
|
id: e.blockId,
|
||||||
oldParent: e.oldParentId,
|
oldParent: e.oldParentId,
|
||||||
oldField: e.oldInputName,
|
oldInput: e.oldInputName,
|
||||||
newParent: e.newParentId,
|
newParent: e.newParentId,
|
||||||
newField: e.newInputName
|
newInput: e.newInputName
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'delete':
|
case 'delete':
|
||||||
|
|
Loading…
Reference in a new issue