diff --git a/Content.Server/GameObjects/Components/Interactable/TilePryingComponent.cs b/Content.Server/GameObjects/Components/Interactable/TilePryingComponent.cs index 9d88c4a0a2..848c8ceba6 100644 --- a/Content.Server/GameObjects/Components/Interactable/TilePryingComponent.cs +++ b/Content.Server/GameObjects/Components/Interactable/TilePryingComponent.cs @@ -41,7 +41,7 @@ namespace Content.Server.GameObjects.Components.Interactable var coordinates = mapGrid.GridTileToLocal(tile.GridIndices); - if (!user.InRangeUnobstructed(coordinates, popup: true)) + if (!user.InRangeUnobstructed(coordinates, popup: false)) return; var tileDef = (ContentTileDefinition)_tileDefinitionManager[tile.Tile.TypeId];