From 560098d5c544137cecd288e3a2ab028d48c7f754 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Wed, 11 Oct 2023 12:19:06 +0100 Subject: [PATCH] level 39 message --- game/messages.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/game/messages.py b/game/messages.py index 12fa86f9d..0d0bca59e 100644 --- a/game/messages.py +++ b/game/messages.py @@ -937,9 +937,11 @@ def title_level39(): def description_level39(): message = ( - "Can you use the 'general algorithm' here so that the van takes a " - "shorter route? Or maybe there's a more efficient way?

Keep " - "an eye on the fuel level - try to use as little as possible." + "Maybe there is a more efficient way than using the general algorithm " + "in this one? It looks like the cows have escaped when you get to the " + "side roads too, so be careful not to hit them!" + "

" + "Hint: Cows don't like noise" ) return build_description(title_level39(), message) @@ -950,6 +952,8 @@ def hint_level39(): "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?" + "

" + "Hint: Cows don't like noise" )