Make the command documentation slightly more consistent across most all commands

This commit is contained in:
runebaas 2019-05-16 22:10:56 +02:00
parent 03343918b0
commit e4fd828a13
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
18 changed files with 26 additions and 26 deletions

View file

@ -19,7 +19,7 @@ namespace Geekbot.net.Commands.Utils.Dice
[Command("dice", RunMode = RunMode.Async)]
[Summary("Roll a dice.")]
public async Task RollCommand([Remainder] [Summary("diceType")] string diceType = "1d20")
public async Task RollCommand([Remainder] [Summary("dice-type")] string diceType = "1d20")
{
var splitedDices = diceType.Split("+");
var dices = new List<DiceTypeDto>();