--- a/ChangeLog.txt Thu Feb 06 13:28:01 2020 +0100
+++ b/ChangeLog.txt Tue Feb 11 01:33:31 2020 +0100
@@ -9,6 +9,7 @@
+ New flags: serbia, montenegro
* Racer: Resize waypoints in custom-sized drawn maps
* Mutant: Fix impossible to become mutant after mutant is gone
+ * A Classic Fairytale: Mission 1: Fix possibility of getting stuck in “Leap of Faith” section
* A Space Adventure: The First Stop: Fix broken victory condition when eliminating minions
* A Space Adventure: Killing the Specialists: Don't award player health if enemy hurts itself
* Fix hog getting stuck when opening parachute right after a shoryuken digging through land
--- a/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua Thu Feb 06 13:28:01 2020 +0100
+++ b/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua Tue Feb 11 01:33:31 2020 +0100
@@ -487,7 +487,7 @@
end
local x = GetX(youngh)
local y = GetY(youngh)
- return x < 3005 and y > 1500 and StoppedGear(youngh)
+ return x > 2575 and x < 3016 and y > 1538 and StoppedGear(youngh)
end
function CheckOnOrPastMoleHead()