add pause to step 7 (#414)

pause is needed in step 7 as well in order to display text.
This commit is contained in:
abalone23 2017-06-13 15:42:31 -07:00 committed by Peli de Halleux
parent 0ce71fb532
commit ecc9c24dc9

View File

@ -187,6 +187,7 @@ Here are all the blocks you will need:
```shuffle ```shuffle
input.onButtonPressed(Button.B, () => { input.onButtonPressed(Button.B, () => {
game.addScore(-1) game.addScore(-1)
basic.pause(1)
basic.showString("LOSSES:") basic.showString("LOSSES:")
basic.showNumber(game.score()) basic.showNumber(game.score())
}) })