From f6db79d303ffa47a91b22c51dfd8cd668639dfe2 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Wed, 26 Oct 2022 16:19:02 +1300 Subject: [PATCH] Fix inventory slots not updating when prediction is disabled. (#12215) --- Content.Client/Inventory/ClientInventorySystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/Inventory/ClientInventorySystem.cs b/Content.Client/Inventory/ClientInventorySystem.cs index b46d9786fd6..1cf17b1fe91 100644 --- a/Content.Client/Inventory/ClientInventorySystem.cs +++ b/Content.Client/Inventory/ClientInventorySystem.cs @@ -39,6 +39,7 @@ namespace Content.Client.Inventory public override void Initialize() { + UpdatesOutsidePrediction = true; base.Initialize(); SubscribeLocalEvent(OnPlayerAttached);