diff --git a/extensions/Lily/TempVariables2.js b/extensions/Lily/TempVariables2.js index a7dfb04db3..57bbd95925 100644 --- a/extensions/Lily/TempVariables2.js +++ b/extensions/Lily/TempVariables2.js @@ -39,7 +39,6 @@ name: "Temporary Variables", color1: "#FF791A", color2: "#E15D00", - menuIconURI: menuIconURI, // I intend on making one later blocks: [ label("Thread Variables", false), @@ -80,6 +79,8 @@ opcode: "getThreadVariable", blockType: Scratch.BlockType.REPORTER, text: "thread var [VAR]", + disableMonitor: true, + allowDropAnywhere: true, arguments: { VAR: { type: Scratch.ArgumentType.STRING, @@ -104,7 +105,7 @@ { opcode: "forEachThreadVariable", blockType: Scratch.BlockType.LOOP, - text: "for each [VAR] in [NUM]", + text: "for [VAR] in [NUM]", arguments: { VAR: { type: Scratch.ArgumentType.STRING, @@ -119,7 +120,7 @@ { opcode: "listThreadVariables", blockType: Scratch.BlockType.REPORTER, - text: "list active thread variables", + text: "active thread variables", disableMonitor: true, }, @@ -165,6 +166,7 @@ blockType: Scratch.BlockType.REPORTER, text: "runtime var [VAR]", disableMonitor: true, + allowDropAnywhere: true, arguments: { VAR: { type: Scratch.ArgumentType.STRING, @@ -205,7 +207,7 @@ { opcode: "listRuntimeVariables", blockType: Scratch.BlockType.REPORTER, - text: "list active runtime variables", + text: "active runtime variables", }, ], };