diff --git a/NetCord/SubscriptionStatus.cs b/NetCord/SubscriptionStatus.cs index 89a7cd4ea..7a9910a27 100644 --- a/NetCord/SubscriptionStatus.cs +++ b/NetCord/SubscriptionStatus.cs @@ -8,12 +8,12 @@ public enum SubscriptionStatus : byte Active = 0, /// - /// Subscription is active but will not renew. + /// Subscription is inactive and not being charged. /// - Ending = 1, + Inactive = 1, /// - /// Subscription is inactive and not being charged. + /// Subscription is active but will not renew. /// - Inactive = 2, + Ending = 2, }