summaryrefslogtreecommitdiff
path: root/DiscoBot/Commands/List.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-06-01 11:25:03 +0100
committerTrueDoctor <d-kobert@web.de>2018-06-01 11:25:03 +0100
commitf6edadbfcadbc9e38e22500a496a74dd49d96d8a (patch)
tree36749e99ee87b9f481254a890acfb7149e6b3fb8 /DiscoBot/Commands/List.cs
parent181dba0f96d8792e3565286b3983830674624cc5 (diff)
added Permissions Class for easy Permission required commands
Diffstat (limited to 'DiscoBot/Commands/List.cs')
-rw-r--r--DiscoBot/Commands/List.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/DiscoBot/Commands/List.cs b/DiscoBot/Commands/List.cs
index ca92088..41fa3d9 100644
--- a/DiscoBot/Commands/List.cs
+++ b/DiscoBot/Commands/List.cs
@@ -6,6 +6,7 @@
using System.Text;
using System.Threading.Tasks;
+ using DiscoBot.Audio;
using DiscoBot.Auxiliary;
using DiscoBot.Characters;
@@ -57,6 +58,11 @@
res.AddRange(
character.Talente.Select(s => s.Name));
break;
+ case "sound":
+ case "sounds":
+ res.AddRange(
+ Enum.GetNames(typeof(Sound)));
+ break;
case "v":
case "vt":
case "vor":