diff --git a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs index b19ef3d6e1..e3717d38f1 100644 --- a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs @@ -163,7 +163,7 @@ namespace OpenRA.Widgets var next = bases .Select( b => b.Actor ) - .SkipWhile(b => world.Selection.Actors.Contains(b)) + .SkipWhile(b => !world.Selection.Actors.Contains(b)) .Skip(1) .FirstOrDefault();