Skip to content

Commit

Permalink
easier to cutt off limbs2
Browse files Browse the repository at this point in the history
  • Loading branch information
TokenStyle committed Nov 23, 2024
1 parent e7aa14b commit 88e8890
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Content.Shared/Body/Part/BodyPartComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public sealed partial class BodyPartComponent : Component, ISurgeryToolComponent
/// to make possible severing it.
/// </summary>
[DataField, AutoNetworkedField]
public float SeverIntegrity = 90;
public float SeverIntegrity = 80;

/// <summary>
/// On what TargetIntegrity we should re-enable the part.
Expand Down 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 88e8890

Please sign in to comment.