# HG changeset patch
# User Wuzzy <Wuzzy2@mail.ru>
# Date 1581381211 -3600
# Node ID 6b9655be1e7ffa4f121951b6904055eb8a235b54
# Parent  c1a2575bc4464d9ca6ed78d352b2b095130b3040
ACF1: Fix PastMole area being too large

diff -r c1a2575bc446 -r 6b9655be1e7f ChangeLog.txt
--- 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
diff -r c1a2575bc446 -r 6b9655be1e7f share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua
--- 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()