diff --git a/ks1-catch-game.md b/ks1-catch-game.md index 5fa655e..e4cbfbe 100644 --- a/ks1-catch-game.md +++ b/ks1-catch-game.md @@ -93,7 +93,7 @@ controller.movePlayer() ## Lets play! -Click on the game console icon on the top left and try your game out! +Click on the game console icon on the bottom right and try your game out! **Discussion** @@ -248,9 +248,11 @@ Pick a sound that sounds happy! Now do the same for when you catch a bad item. ```blocks -music.playSound(melody) { - -} +events.whenPlayerCatchesItem(MovingItemType.Nice, function () { + info.changeScoreBy(1) + // @highlight + music.playSound(melody) +}) ``` ## Congratulations