From e7aa14b7a4b87595afa1f8e7af7014087a0d00b2 Mon Sep 17 00:00:00 2001 From: Token <56667933+TokenStyle@users.noreply.github.com> Date: Sat, 23 Nov 2024 11:44:10 +0500 Subject: [PATCH] remove unnesseccery edits --- Content.Shared/Body/Part/BodyPartComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Body/Part/BodyPartComponent.cs b/Content.Shared/Body/Part/BodyPartComponent.cs index af49f0a7067..b2311c27300 100644 --- a/Content.Shared/Body/Part/BodyPartComponent.cs +++ b/Content.Shared/Body/Part/BodyPartComponent.cs @@ -145,7 +145,7 @@ private List BodyPartSlotsVV foreach (var slotId in Children.Keys) { - temp.Add((ContainerSlot)containerSystem.GetContainer(Owner, SharedBodySystem.PartSlotContainerIdPrefix + slotId)); + temp.Add((ContainerSlot) containerSystem.GetContainer(Owner, SharedBodySystem.PartSlotContainerIdPrefix+slotId)); } return temp; @@ -162,7 +162,7 @@ private List OrganSlotsVV foreach (var slotId in Organs.Keys) { - temp.Add((ContainerSlot)containerSystem.GetContainer(Owner, SharedBodySystem.OrganSlotContainerIdPrefix + slotId)); + temp.Add((ContainerSlot) containerSystem.GetContainer(Owner, SharedBodySystem.OrganSlotContainerIdPrefix+slotId)); } return temp;