# HG changeset patch
# User Wuzzy <almikes@aol.com>
# Date 1460549982 -7200
# Node ID a01a890093f34413a9cabf8e1b010ec25570c92d
# Parent  4ed643879c0f802d4604e5a0c9f0b16007c84d92
Racer: Reduce minimum number of waypoints to 2, tweak descriptions

diff -r 4ed643879c0f -r a01a890093f3 share/hedgewars/Data/Scripts/Multiplayer/Racer.lua
--- a/share/hedgewars/Data/Scripts/Multiplayer/Racer.lua	Wed Apr 13 14:14:33 2016 +0200
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Racer.lua	Wed Apr 13 14:19:42 2016 +0200
@@ -613,17 +613,18 @@
 
         -- Handle Starting Stage of Game
         if (gameOver == false) and (gameBegun == false) then
-                if wpCount >= 3 then
+                if wpCount >= 2 then
                         gameBegun = true
                         roundNumber = 0
                         firstClan = GetHogClan(CurrentHedgehog)
                         ShowMission(loc("Racer"),
                         loc("A Hedgewars mini-game"),
-                        loc("Complete the track as fast as you can!"), 2, 4000)
+                        loc("Touch all waypoints as fast as you can!"), 2, 4000)
                 else
                         ShowMission(loc("Racer"),
                         loc("Waypoint placement phase"),
-                        loc("Place more waypoints using the 'Air Attack' weapon."), 2, 4000)
+                        loc("Place 2-8 waypoints using the Air Attack weapon.") .. "|" ..
+			loc("Skip your turn when you are finished placing waypoints."), 2, 4000)
                         AddAmmo(CurrentHedgehog, amAirAttack, 4000)
                         SetWeapon(amAirAttack)
                 end