Fixed SendMessage overload

This commit is contained in:
Brandon Smith
2015-08-20 21:04:50 -03:00
parent d0d441c1e4
commit 03a291c61a

View File

@@ -756,7 +756,7 @@ namespace Discord
public Task<Message[]> SendMessage(string channelId, string text)
=> SendMessage(channelId, text, new string[0]);
public Task<Message[]> SendMessage(Channel channel, string text, string[] mentions)
=> SendMessage(channel, text, mentions);
=> SendMessage(channel.Id, text, mentions);
public async Task<Message[]> SendMessage(string channelId, string text, string[] mentions)
{
CheckReady();