Skip to content

Commit

Permalink
Clear all defaults for the constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed Sep 19, 2024
1 parent 7453c26 commit 1c02192
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Content.Shared/Contests/ContestsSystem.Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ public sealed partial class ContestArgs
/// Controls whether this melee weapon allows for stamina to factor into damage.
/// </summary>
[DataField]
public bool DoStaminaInteraction = true;
public bool DoStaminaInteraction;

/// <summary>
/// When true, stamina provides a disadvantage.
/// </summary>
[DataField]
public bool StaminaDisadvantage = true;
public bool StaminaDisadvantage;

/// <summary>
/// When true, stamina contests ignore clamp limitations for a melee weapon.
Expand All @@ -149,19 +149,19 @@ public sealed partial class ContestArgs
/// Multiplies the acceptable range of outputs provided by mass contests for melee.
/// </summary>
[DataField]
public float StaminaRangeModifier = 2;
public float StaminaRangeModifier = 1;

/// <summary>
/// The output of a stamina contest is increased by this amount.
/// </summary>
[DataField]
public float StaminaOffset = 0.25f;
public float StaminaOffset;

/// <summary>
/// Controls whether this melee weapon allows for health to factor into damage.
/// </summary>
[DataField]
public bool DoHealthInteraction = true;
public bool DoHealthInteraction;

/// <summary>
/// When true, health contests provide a disadvantage.
Expand All @@ -179,7 +179,7 @@ public sealed partial class ContestArgs
/// Multiplies the acceptable range of outputs provided by mass contests for melee.
/// </summary>
[DataField]
public float HealthRangeModifier = 2;
public float HealthRangeModifier = 1;

/// <summary>
/// The output of health contests is increased by this amount.
Expand Down

0 comments on commit 1c02192

Please sign in to comment.