summaryrefslogtreecommitdiff
path: root/DiscoBot/Audio/Voice.cs
diff options
context:
space:
mode:
authorKobert <Kassian.Kobert@gmail.com>2018-06-01 13:36:58 +0200
committerKobert <Kassian.Kobert@gmail.com>2018-06-01 13:36:58 +0200
commit62c71f7189b0bc3689fe6f82a8234af922cef2d2 (patch)
treea940f01d71d2e876067124cf7455c67cfed880ac /DiscoBot/Audio/Voice.cs
parentdafc59577d16eac7fb198e36c81bd3fe4b008f18 (diff)
parentf6edadbfcadbc9e38e22500a496a74dd49d96d8a (diff)
Merge branch 'master' of https://github.com/TrueDoctor/DiscoBot
Diffstat (limited to 'DiscoBot/Audio/Voice.cs')
-rw-r--r--DiscoBot/Audio/Voice.cs16
1 files changed, 11 insertions, 5 deletions
diff --git a/DiscoBot/Audio/Voice.cs b/DiscoBot/Audio/Voice.cs
index 7a7da5c..f9fc7a3 100644
--- a/DiscoBot/Audio/Voice.cs
+++ b/DiscoBot/Audio/Voice.cs
@@ -62,11 +62,8 @@
[Command("leave", RunMode = RunMode.Async)]
public async Task LeaveChannelAsync(IVoiceChannel channel = null)
{
- if (!((SocketGuildUser)this.Context.User).Roles.ToList().Exists(v => v.Name.Equals("Meister")))
- {
- await this.ReplyAsync("```xl\n Keine ausreichenden Berechtigunen\n```");
- return;
- }
+// Permissions.Test(this.Context, "Meister");
+
if (Client != null)
{
var wait = SoundEffects.Play(Sound.Nooo);
@@ -76,6 +73,15 @@
}
}
+ [Command("volume")]
+ public async Task SetVolume(int volume)
+ {
+ if (volume <= 100 && volume >= 0)
+ {
+ SoundEffects.Volume = volume;
+ }
+ }
+
[Command("play", RunMode = RunMode.Async)]
public async Task PlayAudioAsync(string path)
{