Change WINS/LOSSES to SCORE (#416)
Once step 7 is introduced WINS/LOSSES is not the correct terminology. SCORE should be used instead. For example, if initially there are 5 wins, followed by a loss, it would show: LOSSES:4 However, 4 is the current score, (5 WINS - 1 LOSS).
This commit is contained in:
parent
cbc75fd7fc
commit
2fec9dcc59
@ -180,7 +180,8 @@ input.onButtonPressed(Button.A, () => {
|
|||||||
|
|
||||||
Success! Your @boardname@ can track wins!
|
Success! Your @boardname@ can track wins!
|
||||||
But what about losses?
|
But what about losses?
|
||||||
Use the ``Game`` drawer to subtract `1` from your score when you press button `B`.
|
Use the ``Game`` drawer to subtract `1` from your score when you press button `B`.
|
||||||
|
Change `WINS` to `SCORE` in step 6.
|
||||||
|
|
||||||
Here are all the blocks you will need:
|
Here are all the blocks you will need:
|
||||||
|
|
||||||
@ -188,7 +189,7 @@ Here are all the blocks you will need:
|
|||||||
input.onButtonPressed(Button.B, () => {
|
input.onButtonPressed(Button.B, () => {
|
||||||
game.addScore(-1)
|
game.addScore(-1)
|
||||||
basic.pause(1)
|
basic.pause(1)
|
||||||
basic.showString("LOSSES:")
|
basic.showString("SCORE:")
|
||||||
basic.showNumber(game.score())
|
basic.showNumber(game.score())
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user