From 3cceb354455dbccf1dc096450d42d741163649aa Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 11 Jan 2020 13:36:37 +0100 Subject: [PATCH] Fix Stack item status not updating correctly. --- Content.Client/GameObjects/Components/StackComponent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/GameObjects/Components/StackComponent.cs b/Content.Client/GameObjects/Components/StackComponent.cs index 0d7fb2668b..9c47f69470 100644 --- a/Content.Client/GameObjects/Components/StackComponent.cs +++ b/Content.Client/GameObjects/Components/StackComponent.cs @@ -26,6 +26,7 @@ namespace Content.Client.GameObjects.Components Count = cast.Count; MaxCount = cast.MaxCount; + _uiUpdateNeeded = true; } private sealed class StatusControl : Control