Fix merge issue in execute.js

This commit is contained in:
Tim Mickel 2016-06-30 19:01:19 -04:00
parent 1eaed6fff3
commit bb5acd1ef4

View file

@ -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);