summaryrefslogtreecommitdiff
path: root/DiscoBot/Commands.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/Commands.cs')
-rw-r--r--DiscoBot/Commands.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/DiscoBot/Commands.cs b/DiscoBot/Commands.cs
index 8e85daf..604c83a 100644
--- a/DiscoBot/Commands.cs
+++ b/DiscoBot/Commands.cs
@@ -12,13 +12,13 @@ namespace DiscoBot
{
public static class DSA
{
- public static Dictionary<string, string> relation = new Dictionary<string, string>();
- public static List<Char> chars = new List<Char>();
- public static void Startup()
+ public static Dictionary<string, string> relation = new Dictionary<string, string>(); //dictionary to match the char
+ public static List<Char> chars = new List<Char>(); //list of all charackters
+ public static void Startup()
{
- relation.Add("The Doctor", "Felis Exodus Schattenwald");
+ relation.Add("The Doctor", "Felis Exodus Schattenwald");//Relation
relation.Add("Tardis", "Numeri Illuminus");
- chars.Add(new Char(@"helden\Felis.xml"));
+ chars.Add(new Char(@"helden\Felis.xml")); //Savefile
chars.Add(new Char(@"helden\Numeri.xml"));
}