Racer: Reduce minimum number of waypoints to 2, tweak descriptions
authorWuzzy <almikes@aol.com>
Wed, 13 Apr 2016 14:19:42 +0200
changeset 11931 a01a890093f3
parent 11930 4ed643879c0f
child 11932 f1c7dba0f316
Racer: Reduce minimum number of waypoints to 2, tweak descriptions
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