A dice can now have 144 sides instead of 120
This commit is contained in:
parent
59ee6b289a
commit
4d39850373
1 changed files with 2 additions and 2 deletions
|
@ -51,9 +51,9 @@ namespace Geekbot.net.Commands.Utils.Dice
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dices.Any(d => d.Sides > 120))
|
if (dices.Any(d => d.Sides > 144))
|
||||||
{
|
{
|
||||||
await ReplyAsync("A dice can't have more than 120 sides");
|
await ReplyAsync("A dice can't have more than 144 sides");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue