From 7f5d1e49076dda29fd4f921f8b17efe9625d4fb4 Mon Sep 17 00:00:00 2001 From: ErisWS Date: Sat, 25 Jan 2025 11:42:28 -0500 Subject: [PATCH] GRAHHHHH --- Content.Server/Body/Components/LungComponent.cs | 6 ++++++ .../Clothing/Components/ToggleableClothingComponent.cs | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/Content.Server/Body/Components/LungComponent.cs b/Content.Server/Body/Components/LungComponent.cs index 4fb769d6702..a2c73ebf402 100644 --- a/Content.Server/Body/Components/LungComponent.cs +++ b/Content.Server/Body/Components/LungComponent.cs @@ -34,4 +34,10 @@ public sealed partial class LungComponent : Component /// [DataField] public ProtoId Alert = "LowOxygen"; + + [DataField] + public float MaxVolume = 100f; + + [DataField] + public bool CanReact = false; // No Dexalin lungs... right? } diff --git a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs index c5c0009b3b2..37b37a59038 100644 --- a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs @@ -89,6 +89,12 @@ public sealed partial class ToggleableClothingComponent : Component /// [DataField, AutoNetworkedField] public bool ReplaceCurrentClothing = false; + + [DataField, AutoNetworkedField] + public string AttachTooltip = "toggleable-clothing-attach-tooltip"; + + [DataField, AutoNetworkedField] + public string UhattachTooltip = "toggleable-clothing-unattach-tooltip"; } [Serializable, NetSerializable]