From e1ca54fc2e081c9be4b3c48fff1e3809b4a9cccd Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 21 Mar 2019 17:49:21 +0100 Subject: [PATCH] Fix crash when deleting held entity. --- .../GameObjects/Components/GUI/ServerHandsComponent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/GameObjects/Components/GUI/ServerHandsComponent.cs b/Content.Server/GameObjects/Components/GUI/ServerHandsComponent.cs index e4169fc087..d0ba6b36bc 100644 --- a/Content.Server/GameObjects/Components/GUI/ServerHandsComponent.cs +++ b/Content.Server/GameObjects/Components/GUI/ServerHandsComponent.cs @@ -87,6 +87,7 @@ namespace Content.Server.GameObjects slot.Remove(entity); } } + Dirty(); } public ItemComponent GetHand(string index)