Bump version to 3.7

This commit is contained in:
runebaas 2018-05-04 23:34:47 +02:00
parent 7958c87de5
commit 49392703f2
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
4 changed files with 7 additions and 9 deletions

View file

@ -18,7 +18,7 @@ namespace Geekbot.net.Commands.Audio
_audioUtils = audioUtils;
}
[Command("join")]
// [Command("join")]
public async Task JoinChannel()
{
try
@ -27,12 +27,10 @@ namespace Geekbot.net.Commands.Audio
var channel = (Context.User as IGuildUser)?.VoiceChannel;
if (channel == null)
{
await Context.Channel.SendMessageAsync(
"User must be in a voice channel, or a voice channel must be passed as an argument.");
await Context.Channel.SendMessageAsync("You must be in a voice channel.");
return;
}
// For the next step with transmitting audio, you would want to pass this Audio Client in to a service.
var audioClient = await channel.ConnectAsync();
_audioUtils.StoreAudioClient(Context.Guild.Id, audioClient);
await ReplyAsync($"Connected to {channel.Name}");
@ -43,7 +41,7 @@ namespace Geekbot.net.Commands.Audio
}
}
[Command("disconnect")]
// [Command("disconnect")]
public async Task DisconnectChannel()
{
try
@ -66,7 +64,7 @@ namespace Geekbot.net.Commands.Audio
}
}
[Command("ytplay")]
// [Command("ytplay")]
public async Task ytplay(string url)
{
try