A dice can now have 144 sides instead of 120

This commit is contained in:
runebaas 2018-05-06 23:08:04 +02:00
parent 59ee6b289a
commit 4d39850373
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6

View file

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