summaryrefslogtreecommitdiff
path: root/DSACore/Commands
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 16:51:26 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 16:51:26 +0200
commitde0f076ef9ff546c9a90513259ad6c42cd2224b3 (patch)
tree995d766417fd2093d7950694ef17f3c84b7f1042 /DSACore/Commands
parent04912687127303fd270b61f131cf68fd4aaae956 (diff)
added firebase api
Diffstat (limited to 'DSACore/Commands')
-rw-r--r--DSACore/Commands/CommandHandler.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/DSACore/Commands/CommandHandler.cs b/DSACore/Commands/CommandHandler.cs
index 446f99e..4b6ca42 100644
--- a/DSACore/Commands/CommandHandler.cs
+++ b/DSACore/Commands/CommandHandler.cs
@@ -97,7 +97,6 @@ namespace DSACore.Commands
private static string CheckCommand(string name, CommandTypes command, string waffe, int erschwernis = 0)
{
var chr = Dsa.GetCharacter(0);
- throw new NotImplementedException("access char by id ore name and group id");
switch (command)
{
@@ -116,6 +115,8 @@ namespace DSACore.Commands
}
return $"{name} verwendet {waffe}";
+
+ throw new NotImplementedException("access char by id ore name and group id");
}
}
}