Don't count 1 to many sides in the !dice command
This commit is contained in:
parent
2fb815bc97
commit
4c3b7044ce
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ namespace Geekbot.Core.DiceParser
|
|||
{
|
||||
var result = new DieResult
|
||||
{
|
||||
Roll1 = _random.Next(1, Sides + 1),
|
||||
Roll1 = _random.Next(1, Sides),
|
||||
AdvantageType = AdvantageType
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue