Fix for [20593] (#20663)

This commit is contained in:
Jezithyr
2023-10-01 13:33:18 -07:00
committed by GitHub
parent d832008c07
commit 34d4e9803a
2 changed files with 5 additions and 5 deletions

View File

@@ -15,17 +15,17 @@ public abstract partial class SharedBodySystem : EntitySystem
/// <summary>
/// Container ID prefix for any body parts.
/// </summary>
protected const string PartSlotContainerIdPrefix = "body_part_slot_";
public const string PartSlotContainerIdPrefix = "body_part_slot_";
/// <summary>
/// Container ID for the ContainerSlot on the body entity itself.
/// </summary>
protected const string BodyRootContainerId = "body_root_part";
public const string BodyRootContainerId = "body_root_part";
/// <summary>
/// Container ID prefix for any body organs.
/// </summary>
protected const string OrganSlotContainerIdPrefix = "body_organ_slot_";
public const string OrganSlotContainerIdPrefix = "body_organ_slot_";
[Dependency] protected readonly IPrototypeManager Prototypes = default!;
[Dependency] protected readonly DamageableSystem Damageable = default!;