Restore LimitedChargesComponent.MaxCharges default value to 3 (#36778)

This commit is contained in:
Tayrtahn
2025-04-20 15:20:57 -04:00
committed by GitHub
parent 314ced1bf9
commit bd40cb9fa5

View File

@@ -17,7 +17,7 @@ public sealed partial class LimitedChargesComponent : Component
/// The max charges this action has. /// The max charges this action has.
/// </summary> /// </summary>
[DataField, AutoNetworkedField, Access(Other = AccessPermissions.Read)] [DataField, AutoNetworkedField, Access(Other = AccessPermissions.Read)]
public int MaxCharges = 1; public int MaxCharges = 3;
/// <summary> /// <summary>
/// Last time charges was changed. Used to derive current charges. /// Last time charges was changed. Used to derive current charges.