Skip to content

Commit

Permalink
remove unnecessery edits
Browse files Browse the repository at this point in the history
  • Loading branch information
TokenStyle committed Nov 23, 2024
1 parent 88e8890 commit a6d335a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Shared/Body/Part/BodyPartComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private List<ContainerSlot> 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;
Expand All @@ -162,7 +162,7 @@ private List<ContainerSlot> 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;
Expand Down

0 comments on commit a6d335a

Please sign in to comment.