From 4c04272d0a1cb1dabda491a39e5e79e8b6407965 Mon Sep 17 00:00:00 2001 From: Token <56667933+TokenStyle@users.noreply.github.com> Date: Wed, 27 Nov 2024 15:03:44 +0500 Subject: [PATCH] hotfix inventory slots dissapear in roundstart Basically reverts disabling feature of limbs cutting --- Content.Shared/Inventory/InventorySystem.Slots.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index 666fe3f4514..cea24755f49 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -219,7 +219,7 @@ public void SetSlotStatus(EntityUid uid, string slotName, bool isDisabled, Inven _randomHelper.RandomOffset(entityUid, 0.5f); } } - slot.Disabled = isDisabled; + //slot.Disabled = isDisabled; // Backmen: surgery TURNED OFF FEATURE, would be fixed today maybe with proper limbs cutting disables appropriate slot(-s) break; }