diff --git a/game/missiongenerator/aircraft/waypoints/landingzone.py b/game/missiongenerator/aircraft/waypoints/landingzone.py index 2e91189d..894477ae 100644 --- a/game/missiongenerator/aircraft/waypoints/landingzone.py +++ b/game/missiongenerator/aircraft/waypoints/landingzone.py @@ -10,7 +10,7 @@ class LandingZoneBuilder(PydcsWaypointBuilder): # Create a landing task, currently only for Helos! # Calculate a landing point with a small buffer to prevent AI from landing # directly at the static ammo depot and exploding - landing_point = waypoint.position.random_point_within(15, 5) + landing_point = waypoint.position.random_point_within(30, 20) # Use Land Task with 30s duration for helos waypoint.add_task(Land(landing_point, duration=30)) if waypoint.name == "DROPOFFZONE":