diff --git a/Content.Client/GameObjects/EntitySystems/VerbSystem.cs b/Content.Client/GameObjects/EntitySystems/VerbSystem.cs index 7e2d7cc85f..422220e9d5 100644 --- a/Content.Client/GameObjects/EntitySystems/VerbSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/VerbSystem.cs @@ -91,6 +91,11 @@ namespace Content.Client.GameObjects.EntitySystems var entities = gameScreen.GetEntitiesUnderPosition(args.Coordinates); + if (entities.Count == 0) + { + return; + } + _currentPopup = new VerbPopup(); _currentPopup.OnPopupHide += _closeContextMenu; foreach (var entity in entities)