summaryrefslogtreecommitdiff
path: root/DiscoBot/Commands/FileHandler.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 01:19:52 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 01:19:52 +0200
commit4671e76af27446a74c1015bd76b52e48ea241e74 (patch)
tree74e0dc157e26bf8953f26726f072bdae6469801b /DiscoBot/Commands/FileHandler.cs
parentac3f4ef1a70c4cdb538a0f0629c97bf34871a58b (diff)
fixed Filehandler
Diffstat (limited to 'DiscoBot/Commands/FileHandler.cs')
-rw-r--r--DiscoBot/Commands/FileHandler.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/DiscoBot/Commands/FileHandler.cs b/DiscoBot/Commands/FileHandler.cs
index 0e8af60..e1d9bc2 100644
--- a/DiscoBot/Commands/FileHandler.cs
+++ b/DiscoBot/Commands/FileHandler.cs
@@ -3,6 +3,7 @@
using System;
using System.Linq;
using System.Net;
+ using System.Threading.Tasks;
using DiscoBot.Auxiliary;
using DiscoBot.Characters;
@@ -14,7 +15,7 @@
public class FileHandler : ModuleBase
{
[Command("send"), Summary("fügt Helden hinzu")]
- public void AddChar()
+ public async Task AddChar()
{
var msg = this.Context.Message;
if (msg.Attachments == null)