From 5c4b51243ae5604969fe9ccefe9ec3501c55d625 Mon Sep 17 00:00:00 2001 From: omsuneri <142336291+omsuneri@users.noreply.github.com> Date: Wed, 21 Aug 2024 23:12:45 +0530 Subject: [PATCH] FIXES ISSUE #3895 Add alphabet "G" as a block found in easy mode The requirement of this bug is to add the pitch G4 nad Alphabet G block in pitch menu of the beginner mode. --- js/blocks/PitchBlocks.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/blocks/PitchBlocks.js b/js/blocks/PitchBlocks.js index 9a5d2635c9..6001cd1710 100644 --- a/js/blocks/PitchBlocks.js +++ b/js/blocks/PitchBlocks.js @@ -875,6 +875,7 @@ function setupPitchBlocks(activity) { "note2" ]); this.formBlock({ outType: "noteout" }); + this.beginnerBlock(true); } } @@ -1841,6 +1842,7 @@ function setupPitchBlocks(activity) { [1, ["notename", { value: "G" }], 0, 0, [0]], [2, ["number", { value: 4 }], 0, 0, [0]] ]); + this.beginnerBlock(true); } }