ACF1: Fix PastMole area being too large
authorWuzzy <Wuzzy2@mail.ru>
Tue, 11 Feb 2020 01:33:31 +0100
changeset 15546 6b9655be1e7f
parent 15545 c1a2575bc446
child 15547 863059f61793
ACF1: Fix PastMole area being too large
ChangeLog.txt
share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua
--- 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()