diff --git a/OpenRA.Mods.Common/Traits/World/PathFinder.cs b/OpenRA.Mods.Common/Traits/World/PathFinder.cs index 435d070ba3..c9f9e39888 100644 --- a/OpenRA.Mods.Common/Traits/World/PathFinder.cs +++ b/OpenRA.Mods.Common/Traits/World/PathFinder.cs @@ -56,7 +56,7 @@ namespace OpenRA.Mods.Common.Traits { var sourcesList = sources.ToList(); if (sourcesList.Count == 0) - throw new ArgumentException($"{nameof(sources)} must not be empty.", nameof(sources)); + return NoPath; var locomotor = GetLocomotor(self);