Updated changelog, removed the ability to bet 0 on betdraw

This commit is contained in:
Kwoth
2022-09-23 23:01:11 +02:00
parent 72158c0a2c
commit 5b4517cf5c
3 changed files with 9 additions and 1 deletions

View File

@@ -7,6 +7,11 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.
### Added
- Added `.autopublish` command which will automatically publish messages posted in the channel.
- Added `--after <messageid>` option to prune which will make prune only delete messages after the specified message id.
### Changed
- prune `--after` and `--safe` are now proper command options, and will show in .h help
## [4.3.7]

View File

@@ -145,6 +145,9 @@ public partial class Gambling
public async Task BetDrawInternal(long amount, InputValueGuess? val, InputColorGuess? col)
{
if (amount <= 0)
return;
var res = await _service.BetDrawAsync(ctx.User.Id,
amount,
(byte?)val,

View File

@@ -371,7 +371,7 @@ setchanlname:
args:
- "NewName"
prune:
desc: "`{0}prune` removes all Nadeko's messages in the last 100 messages. `{0}prune X` removes last `X` number of messages from the channel (up to 100). `{0}prune @Someone` removes all Someone's messages in the last 100 messages. `{0}prune @Someone X` removes last `X` number of 'Someone's' messages in the channel. You can use the `-s` / `--safe` parameter at the end to only prune messages that are not pinned."
desc: "`{0}prune` removes all Nadeko's messages in the last 100 messages. `{0}prune X` removes last `X` number of messages from the channel (up to 100). `{0}prune @Someone` removes all Someone's messages in the last 100 messages. `{0}prune @Someone X` removes last `X` number of 'Someone's' messages in the channel."
args:
- ""
- "-s"