summaryrefslogtreecommitdiff
path: root/DSACore/Commands/List.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Commands/List.cs')
-rw-r--r--DSACore/Commands/List.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/DSACore/Commands/List.cs b/DSACore/Commands/List.cs
index 1fa0dde..7fc682f 100644
--- a/DSACore/Commands/List.cs
+++ b/DSACore/Commands/List.cs
@@ -1,9 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Threading.Tasks;
-using DSACore.DSA_Game;
using DSACore.Audio;
+using DSACore.DSA_Game;
namespace DSACore.Commands
{
@@ -12,7 +11,7 @@ namespace DSACore.Commands
public static string ListAsync(string prop)
{
var res = new List<string>();
-
+
//int persist = 0;
switch (prop.ToLower())
@@ -20,7 +19,7 @@ namespace DSACore.Commands
case "man":
case "help":
return Help.Get_Specific_Help("List");
- // break;
+ // break;
case "chars":
res.AddRange(Dsa.Chars.Select(x => x.Name));
break;
@@ -44,4 +43,4 @@ namespace DSACore.Commands
return res.ToString();
}
}
-}
+} \ No newline at end of file