From b25a223d1145c0666e3a0e296bf72b46802d894b Mon Sep 17 00:00:00 2001 From: LilyMakesThings <127533508+LilyMakesThings@users.noreply.github.com> Date: Wed, 23 Aug 2023 05:23:04 +0100 Subject: [PATCH] Update TempVariables2.js --- extensions/Lily/TempVariables2.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/extensions/Lily/TempVariables2.js b/extensions/Lily/TempVariables2.js index 49cb1b7dcd..a7dfb04db3 100644 --- a/extensions/Lily/TempVariables2.js +++ b/extensions/Lily/TempVariables2.js @@ -102,19 +102,19 @@ "---", { - opcode: 'forEachThreadVariable', + opcode: "forEachThreadVariable", blockType: Scratch.BlockType.LOOP, - text: 'for each [VAR] in [NUM]', + text: "for each [VAR] in [NUM]", arguments: { VAR: { type: Scratch.ArgumentType.STRING, - defaultValue: 'thread variable' + defaultValue: "thread variable", }, NUM: { type: Scratch.ArgumentType.NUMBER, - defaultValue: '10' - } - } + defaultValue: "10", + }, + }, }, { opcode: "listThreadVariables",