diff --git a/Content.Shared/Traits/TraitCategoryPrototype.cs b/Content.Shared/Traits/TraitCategoryPrototype.cs index e5bb919bf0..00c7fd36af 100644 --- a/Content.Shared/Traits/TraitCategoryPrototype.cs +++ b/Content.Shared/Traits/TraitCategoryPrototype.cs @@ -21,8 +21,8 @@ public sealed partial class TraitCategoryPrototype : IPrototype public LocId Name { get; private set; } = string.Empty; /// - /// The maximum number of traits that can be taken in this category. If -1, you can take as many traits as you like. + /// The maximum number of traits that can be taken in this category. /// [DataField] - public int MaxTraitPoints = -1; + public int? MaxTraitPoints; }