From 3edcca4927a84f57bf2a3dfaa6d19f4bc788f33e Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 15 Sep 2021 01:30:26 +0200 Subject: [PATCH] Updated CHANGELOG.md, removed an unused enum --- CHANGELOG.md | 2 +- src/NadekoBot/Common/BotConfigEditType.cs | 26 ----------------------- 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 src/NadekoBot/Common/BotConfigEditType.cs diff --git a/CHANGELOG.md b/CHANGELOG.md index 719675691..95ef3a154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. - Added `.massban` to ban multiple people at once. 30 second cooldown - Added `.youtubeuploadnotif` / `.yun` as a shortcut for subscribing to a youtube channel's rss feed - Added `.imageonlychannel` / `.imageonly` to prevent users from posting anything but images in the channel -- Fully translated to Spanish 🎉 +- Fully translated to Spanish, Russian and Ukrainian 🎉 ### Changed diff --git a/src/NadekoBot/Common/BotConfigEditType.cs b/src/NadekoBot/Common/BotConfigEditType.cs deleted file mode 100644 index cb8b352b1..000000000 --- a/src/NadekoBot/Common/BotConfigEditType.cs +++ /dev/null @@ -1,26 +0,0 @@ -namespace NadekoBot.Common -{ - public enum BotConfigEditType - { - /// - /// The amount of currency awarded to the winner of the trivia game. - /// Default is 0. - /// - TriviaCurrencyReward, - /// - /// Users can't start trivia games which have smaller win requirement than specified by this setting. - /// Default is 0. - /// - MinimumTriviaWinReq, - /// - /// The amount of XP the user receives when they send a message (which is not too short). - /// Default is 3. - /// - XpPerMessage, - /// - /// This value represents how often the user can receive XP from sending messages. - /// Default is 5. - /// - XpMinutesTimeout, - } -}