Updated CHANGELOG.md, removed an unused enum

This commit is contained in:
Kwoth
2021-09-15 01:30:26 +02:00
parent 0635a0ddc8
commit 3edcca4927
2 changed files with 1 additions and 27 deletions

View File

@@ -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

View File

@@ -1,26 +0,0 @@
namespace NadekoBot.Common
{
public enum BotConfigEditType
{
/// <summary>
/// The amount of currency awarded to the winner of the trivia game.
/// Default is 0.
/// </summary>
TriviaCurrencyReward,
/// <summary>
/// Users can't start trivia games which have smaller win requirement than specified by this setting.
/// Default is 0.
/// </summary>
MinimumTriviaWinReq,
/// <summary>
/// The amount of XP the user receives when they send a message (which is not too short).
/// Default is 3.
/// </summary>
XpPerMessage,
/// <summary>
/// This value represents how often the user can receive XP from sending messages.
/// Default is 5.
/// </summary>
XpMinutesTimeout,
}
}