mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
Fix merge issue in execute.js
This commit is contained in:
parent
1eaed6fff3
commit
bb5acd1ef4
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ var execute = function (sequencer, thread) {
|
|||
var currentBlockId = thread.peekStack();
|
||||
var currentStackFrame = thread.peekStackFrame();
|
||||
|
||||
var opcode = runtime.blocks.getOpcode(currentBlockId);
|
||||
var opcode = target.blocks.getOpcode(currentBlockId);
|
||||
|
||||
if (!opcode) {
|
||||
console.warn('Could not get opcode for block: ' + currentBlockId);
|
||||
|
|
Loading…
Reference in a new issue