diff --git a/Content.Server/GameObjects/Components/GUI/HumanInventoryControllerComponent.cs b/Content.Server/GameObjects/Components/GUI/HumanInventoryControllerComponent.cs index 7422355f79..a22e4d32d7 100644 --- a/Content.Server/GameObjects/Components/GUI/HumanInventoryControllerComponent.cs +++ b/Content.Server/GameObjects/Components/GUI/HumanInventoryControllerComponent.cs @@ -66,6 +66,11 @@ namespace Content.Server.GameObjects // Hey, it's descriptive. private void DropIdAndPocketsIfWeNoLongerHaveAUniform() { + if (Deleted) + { + return; + } + if (_inventory.GetSlotItem(Slots.INNERCLOTHING) != null) { return;