From c3cbae3d321c4550672bb8f3c5bb5f3de692255f Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Thu, 19 Sep 2024 18:52:18 -0400 Subject: [PATCH] Default ContestArgs for Melee --- Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index 345fb51bcf..43e3096d15 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -162,7 +162,15 @@ public sealed partial class MeleeWeaponComponent : Component /// Arguments for the MeleeContestInteractions constructor /// [DataField] - public ContestArgs ContestArgs = default!; + public ContestArgs ContestArgs = new ContestArgs + { + DoStaminaInteraction = true, + StaminaDisadvantage = true, + StaminaRangeModifier = 2, + StaminaOffset = 0.25f, + DoHealthInteraction = true, + HealthRangeModifier = 1.5f, + }; } ///