diff --git a/Content.Server/GameObjects/Components/Items/FloorTileItemComponent.cs b/Content.Server/GameObjects/Components/Items/FloorTileItemComponent.cs index ac83fb5b20..5d661e74b2 100644 --- a/Content.Server/GameObjects/Components/Items/FloorTileItemComponent.cs +++ b/Content.Server/GameObjects/Components/Items/FloorTileItemComponent.cs @@ -55,7 +55,7 @@ namespace Content.Server.GameObjects.Components.Items var desiredTile = _tileDefinitionManager[_outputTile]; mapGrid.SetTile(eventArgs.ClickLocation, new Tile(desiredTile.TileId)); EntitySystem.Get().Play("/Audio/items/genhit.ogg", eventArgs.ClickLocation); - if(Stack.Count < 1){ + if(_stack.Count < 1){ Owner.Delete(); } }