Resolve issue with SB2 import

This commit is contained in:
Andrew Sliwinski 2018-04-20 10:58:03 -04:00
parent 645a42b843
commit 57b7e9916d

View file

@ -21,10 +21,12 @@ const {deserializeCostume, deserializeSound} = require('./deserialize-assets.js'
// Constants used during deserialization of an SB2 file // Constants used during deserialization of an SB2 file
const CORE_EXTENSIONS = [ const CORE_EXTENSIONS = [
'argument',
'control', 'control',
'data', 'data',
'event', 'event',
'looks', 'looks',
'math',
'motion', 'motion',
'operator', 'operator',
'procedures', 'procedures',
@ -519,6 +521,7 @@ const parseBlock = function (sb2block, addBroadcastMsg, getVariableId, extension
const index = blockMetadata.opcode.indexOf('_'); const index = blockMetadata.opcode.indexOf('_');
const prefix = blockMetadata.opcode.substring(0, index); const prefix = blockMetadata.opcode.substring(0, index);
if (CORE_EXTENSIONS.indexOf(prefix) === -1) { if (CORE_EXTENSIONS.indexOf(prefix) === -1) {
console.log(prefix);
extensions.extensionIDs.add(prefix); extensions.extensionIDs.add(prefix);
} }