Browse Source

Fix duplicated members of DiscordErrorCode (#2500)

Additionally, fix typo in DiscordErrorCode
tags/3.9.0
Ge GitHub 2 years ago
parent
commit
6712ef4573
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 9 deletions
  1. +8
    -9
      src/Discord.Net.Core/DiscordErrorCode.cs

+ 8
- 9
src/Discord.Net.Core/DiscordErrorCode.cs View File

@@ -94,10 +94,10 @@ namespace Discord
MaxNumberOfDailyApplicationCommandCreatesHasBeenReached = 30034,
MaximumBansForNonGuildMembersReached = 30035,
MaximumBanFetchesReached = 30037,
MaximumUncompleteGuildScheduledEvents = 30038,
MaximumUncompletedGuildScheduledEvents = 30038,
MaximumStickersReached = 30039,
MaximumPruneRequestReached = 30040,
MaximumGuildWigitsReached = 30042,
MaximumGuildWidgetsReached = 30042,
#endregion

#region General Request Errors (40XXX)
@@ -128,12 +128,12 @@ namespace Discord
MissingPermissions = 50001,
InvalidAccountType = 50002,
CannotExecuteForDM = 50003,
GuildWigitDisabled = 50004,
GuildWidgetDisabled = 50004,
CannotEditOtherUsersMessage = 50005,
CannotSendEmptyMessage = 50006,
CannotSendMessageToUser = 50007,
CannotSendMessageToVoiceChannel = 50008,
ChannelVerificationTooHight = 50009,
ChannelVerificationTooHigh = 50009,
OAuth2ApplicationDoesntHaveBot = 50010,
OAuth2ApplicationLimitReached = 50011,
InvalidOAuth2State = 50012,
@@ -174,9 +174,8 @@ namespace Discord
ServerRequiresMonetization = 50097,
ServerRequiresBoosts = 50101,
RequestBodyContainsInvalidJSON = 50109,
FailedToResizeAssetBelowTheMaximumSize = 50138,
OwnershipCannotBeTransferredToABotUser = 50132,
AssetResizeBelowTheMaximumSize= 50138,
FailedToResizeAssetBelowTheMaximumSize = 50138,
UploadedFileNotFound = 50146,
MissingPermissionToSendThisSticker = 50600,
#endregion
@@ -215,8 +214,8 @@ namespace Discord
LottieCantContainRasters = 170002,
StickerMaximumFramerateExceeded = 170003,
StickerMaximumFrameCountExceeded = 170004,
LottieMaximumDimentionsExceeded = 170005,
StickerFramerateBoundsExceeed = 170006,
LottieMaximumDimensionsExceeded = 170005,
StickerFramerateBoundsExceeded = 170006,
StickerAnimationDurationTooLong = 170007,
#endregion

@@ -224,7 +223,7 @@ namespace Discord
CannotUpdateFinishedEvent = 180000,
FailedStageCreation = 180002,
#endregion
#region Forum & Automod
MessageWasBlockedByAutomaticModeration = 200000,
TitleWasBlockedByAutomaticModeration = 200001,


Loading…
Cancel
Save