diff -r 0e8db74ec585 -r 110d6c1e817f share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua --- a/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua Mon Sep 03 05:05:00 2018 +0200 +++ b/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua Mon Sep 03 12:46:57 2018 +0200 @@ -546,7 +546,7 @@ function DoCratesColled() RemoveEventFunc(CheckTimesUp) - SetTurnTimeLeft(cMaxTurnTime) + SetTurnTimeLeft(MAX_TURN_TIME) AddCaption(loc("As the challenge was completed, Leaks A Lot set foot on the ground...")) end @@ -573,7 +573,7 @@ challengeFailed = true deleteCrate = true DeleteGear(crates[1]) - SetTurnTimeLeft(cMaxTurnTime) + SetTurnTimeLeft(MAX_TURN_TIME) AddCaption(loc("And so happened that Leaks A Lot failed to complete the challenge! He landed, pressured by shame ...")) AddEvent(CheckChallengeFailed, {}, DoChallengeFailed, {}, 0) end @@ -751,7 +751,7 @@ function onGameStart() progress = tonumber(GetCampaignVar("Progress")) - SetTurnTimeLeft(cMaxTurnTime) + SetTurnTimeLeft(MAX_TURN_TIME) FollowGear(youngh) ShowMission(loc("A Classic Fairytale"), loc("First Blood"), loc("Finish your training|Hint: Animations can be skipped with the [Precise] key."), -amSkip, 0) HideHog(cannibal) @@ -846,7 +846,7 @@ end SwitchHog(youngh) FollowGear(youngh) - SetTurnTimeLeft(cMaxTurnTime) + SetTurnTimeLeft(MAX_TURN_TIME) end function onGearDamage(gear, damage)