diff --git a/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs b/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs index bd6c4829b6..408b100466 100644 --- a/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs +++ b/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs @@ -158,7 +158,7 @@ namespace Content.Server.GameObjects.Components.Interactable public bool TryPryTile(IEntity user, GridCoordinates clickLocation) { - if (HasQuality(ToolQuality.Prying)) + if (!HasQuality(ToolQuality.Prying)) return false; var mapGrid = _mapManager.GetGrid(clickLocation.GridID);