Rewrite the !dice command from scratch

This commit is contained in:
runebaas 2020-06-21 03:33:05 +02:00
parent d7e313c9fa
commit 6d44960867
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
13 changed files with 376 additions and 126 deletions

View file

@ -0,0 +1,13 @@
using System;
namespace Geekbot.net.Lib.DiceParser
{
public class DiceException : Exception
{
public DiceException(string message) : base(message)
{
}
public string DiceName { get; set; }
}
}