Skip to content

Commit

Permalink
Merge branch 'master' into new-blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Oct 18, 2023
2 parents accf6c2 + daec981 commit fc54187
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

<!--next-version-placeholder-->

## v5.12.3 (2023-10-17)

### Fix

* Update level 47 title ([#1501](https://github.com/ocadotechnology/rapid-router/issues/1501)) ([`aea6c46`](https://github.com/ocadotechnology/rapid-router/commit/aea6c460a5d34f02368bab7e0912c1052a9f7a57))

## v5.12.2 (2023-10-17)

### Fix

* Add space in level 39 hint ([#1500](https://github.com/ocadotechnology/rapid-router/issues/1500)) ([`d31a41a`](https://github.com/ocadotechnology/rapid-router/commit/d31a41a33cde09b921704a4529d08834f0a7836c))

## v5.12.1 (2023-10-17)

### Fix

* Update level 39 hint ([#1499](https://github.com/ocadotechnology/rapid-router/issues/1499)) ([`b8a4e1f`](https://github.com/ocadotechnology/rapid-router/commit/b8a4e1f2a68fc988e7215417b789bbc190ea147c))

## v5.12.0 (2023-10-16)

### Feature
Expand Down
2 changes: 1 addition & 1 deletion game/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.12.0"
__version__ = "5.12.3"
10 changes: 4 additions & 6 deletions game/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -945,12 +945,10 @@ def description_level39():
return build_description(title_level39(), message)


# TODO: Update when we update this level
def hint_level39():
return (
"Uh oh, moving around the blocks in your 'general algorithm' might not "
"be the most efficient solution. How about creating a simple solution "
"without 'if statements' that will help the van reach the house?"
"You'll need to modify your general algorithm here so you can get back "
"on track if you hit a dead end."
"<br><br>"
"Hint: Cows don't like noise"
)
Expand Down Expand Up @@ -1108,8 +1106,8 @@ def title_level47():
def description_level47():
message = (
"Put your knowledge to test. Create an algorithm to lead the van to the "
"house. <br> Don't forget to add a turn and to make the van wait at a "
"traffic light."
"house. <br> Don't forget to add a turn block and this time, you "
"need to avoid cows instead of waiting at traffic lights."
)
return build_description(title_level47(), message)

Expand Down

0 comments on commit fc54187

Please sign in to comment.