Makes text parameter of sending messages optional (#1042)

commit 114e5b431b26669bcdaac9f84792a216ad67186f
Author: HelpfulStranger999 <helpfulstranger999@gmail.com>
Date:   Sat Apr 28 19:08:35 2018 -0500

    Fixes lack of default value for tts

commit 1fd8c70c5346ff0c4fdb0093c0fc7fb4b3c8db2c
Author: HelpfulStranger999 <helpfulstranger999@gmail.com>
Date:   Sat Apr 28 15:21:11 2018 -0500

    Makes text parameter of sending messages optional
This commit is contained in:
HelpfulStranger999
2018-05-24 19:23:44 -04:00
committed by Christopher F
parent 79811d0e61
commit 0ba8b063ad
12 changed files with 14 additions and 14 deletions

View File

@@ -9,7 +9,7 @@ namespace Discord
/// Sends a message to the user via DM.
/// </summary>
public static async Task<IUserMessage> SendMessageAsync(this IUser user,
string text,
string text = null,
bool isTTS = false,
Embed embed = null,
RequestOptions options = null)