diff --git a/Content.Shared/GameObjects/EntitySystems/SharedStackSystem.cs b/Content.Shared/GameObjects/EntitySystems/SharedStackSystem.cs index b7d622fdcc..6f6f7e2da0 100644 --- a/Content.Shared/GameObjects/EntitySystems/SharedStackSystem.cs +++ b/Content.Shared/GameObjects/EntitySystems/SharedStackSystem.cs @@ -22,6 +22,7 @@ namespace Content.Shared.GameObjects.EntitySystems if (!ComponentManager.TryGetComponent(uid, out SharedAppearanceComponent? appearance)) return; + appearance.SetData(StackVisuals.Actual, component.Count); appearance.SetData(StackVisuals.MaxCount, component.MaxCount); appearance.SetData(StackVisuals.Hide, false); }