Skip to content

Commit 8ab4b94

Browse files
reminders: Make reason optional
1 parent 9904b93 commit 8ab4b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Commands/GlobalCmds.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public async Task UserInfoSlashCommand(CommandContext ctx, [Parameter("user"), D
253253
public async Task RemindMe(
254254
TextCommandContext ctx,
255255
[Description("When to trigger the reminder. Accepts many formats. Surround with quotes if you need to use spaces.")] string timetoParse,
256-
[RemainingText, Description("The text to send when the reminder triggers.")] string reminder
256+
[RemainingText, Description("The text to send when the reminder triggers.")] string reminder = "..."
257257
)
258258
{
259259
DateTime t = TimeHelpers.ParseAnyDateFormat(timetoParse);

0 commit comments

Comments
 (0)