summaryrefslogtreecommitdiff
path: root/DiscoBot
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-06-07 12:55:46 +0200
committerTrueDoctor <d-kobert@web.de>2018-06-07 12:55:46 +0200
commitc6232e25593a624e90ed3168a50d4223902188f2 (patch)
treef5134a4804f047136a0f3b41c2f0698b9cde7025 /DiscoBot
parente3aa026339d2924bde464f59c5d731eec649db63 (diff)
Fixed Merge
Diffstat (limited to 'DiscoBot')
-rw-r--r--DiscoBot/Commands/LebenUndAstral.cs19
1 files changed, 2 insertions, 17 deletions
diff --git a/DiscoBot/Commands/LebenUndAstral.cs b/DiscoBot/Commands/LebenUndAstral.cs
index 530f1c2..fd5e502 100644
--- a/DiscoBot/Commands/LebenUndAstral.cs
+++ b/DiscoBot/Commands/LebenUndAstral.cs
@@ -12,8 +12,6 @@
public class LE : ModuleBase
{
-
-
[Command("LE"), Summary("Ändert aktuellen Lebenspunktestand")]
[Alias("le", "leben", "LP", "lp", "Le", "Lp")]
@@ -25,8 +23,7 @@
if (prop.ToLower().Equals("help") || prop.ToLower().Equals("man"))
{
- Man man = new Man();
- await this.ReplyAsync("```xl\n" + man.Man_LE() + "\n```");
+ await this.ReplyAsync("```xl\n" + Help.Get_Specific_Help("LE") + "\n```");
return;
@@ -44,15 +41,8 @@
}
}
-
-
-
-
-
public class AE : ModuleBase
{
-
-
[Command("AE"), Summary("Ändert aktuellen Astralpunktestand")]
[Alias("ae", "astral", "ASP", "Asp", "asp", "Astral")]
@@ -64,10 +54,8 @@
if (prop.ToLower().Equals("help") || prop.ToLower().Equals("man"))
{
- Man man = new Man();
- await this.ReplyAsync("```xl\n" + man.Man_AE() + "\n```");
+ await this.ReplyAsync("```xl\n" + Help.Get_Specific_Help("AE") + "\n```");
return;
-
}
//Incase the input is badly formated
@@ -81,9 +69,6 @@
await this.ReplyAsync("```xl\n" + res + "\n```");
}
-
-
-
}
public static class StatExtension