diff options
author | TrueDoctor <d-kobert@web.de> | 2018-04-11 14:41:01 +0200 |
---|---|---|
committer | TrueDoctor <d-kobert@web.de> | 2018-04-11 14:41:01 +0200 |
commit | e5e0c1c5c9fb6afd68ebe9dc075af23f46f11e25 (patch) | |
tree | 9caffddadea2851b929efa74531c801d0f8c4454 /DiscoBot/Commands/Utility.cs | |
parent | 351067a5203307fc0c1a14ae2be84eae71246af9 (diff) |
General Cleanup and retructuring
Diffstat (limited to 'DiscoBot/Commands/Utility.cs')
-rw-r--r-- | DiscoBot/Commands/Utility.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/DiscoBot/Commands/Utility.cs b/DiscoBot/Commands/Utility.cs deleted file mode 100644 index bbba1a1..0000000 --- a/DiscoBot/Commands/Utility.cs +++ /dev/null @@ -1,32 +0,0 @@ -namespace DiscoBot.Commands -{ - using System.Threading.Tasks; - - using DiscoBot.Auxiliary; - - using Discord.Commands; - - public class Utility : ModuleBase - { - [Command("r"), Summary("Würfelt ")] - [Alias("R", "Roll", "roll", "Würfle")] - public Task RollAsync([Remainder, Summary("Weapon")] string roll) - { - return this.ReplyAsync("```xl\n" + Misc.Roll(roll) + "\n```"); - } - - [Command("general"), Summary("Set General ")] - public Task SetGeneralAsync([Remainder, Summary("Set General")] int i = 0) - { - Dsa.GeneralContext = this.Context; - return this.Context.Channel.SendMessageAsync($"```xl\n Der Dachs hat in '{this.Context.Channel.Name}' ein Zuhause gefunden. Gm Nachrichten werden nun auch in diesem Channel gepostet. \n```"); - } - - [Command("say"), Summary("Echos a message.")] - [Alias("s")] - public Task SayAsync([Remainder, Summary("The text to echo")] string echo) - { - return this.ReplyAsync(echo); - } - } -} |