Sample of making this level more clear.

It wasn't at all clear how to solve this until I came to look at the actual tests. The first win condition step also didn't display which may have been a result of the  format? Here's an example of something that might be more clear to the player.
This commit is contained in:
Tokugero 2021-04-13 12:42:51 -07:00 committed by GitHub
parent 1606e0565e
commit f9123b5652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,8 @@ Have a look at these two timelines. They have exactly the same outcome. But one
[win]
Right! Having each change in its own commit makes it easier to understand what's going on! Let's learn how to do that!
# Right! Having each change in its own commit makes it easier to understand what's going on! Let's learn how to do that!
git branch --show-current | grep step-by-step
[setup]
@ -46,5 +47,5 @@ git checkout HEAD~3
[win]
# Pick the timeline that's clearer, and make the next logical change!
git show step-by-step:smoke_detector | grep -v "absolutely silent"
# Pick the timeline that's clearer, and make the alarm go off!
git show step-by-step:smoke_detector | tail -n 1 | grep -v "absolutely silent"