diff --git a/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs index 417127faff..4eaf9a13d9 100644 --- a/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs @@ -261,7 +261,10 @@ namespace OpenRA.Mods.Common.Widgets else if (SelectSameTypeKey.IsActivatedBy(e) && !World.IsGameOver) { if (!World.Selection.Actors.Any()) + { + TextNotificationsManager.AddFeedbackLine("Nothing selected."); return false; + } var ownedActors = World.Selection.Actors .Where(x => !x.IsDead && eligiblePlayers.Contains(x.Owner))