Skip to content

Commit

Permalink
/reminder set: Make 'text' option optional
Browse files Browse the repository at this point in the history
  • Loading branch information
FloatingMilkshake committed Oct 14, 2024
1 parent 7471fe7 commit 36e49d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/ReminderCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static async Task SetReminder(InteractionContext ctx,
[Option("time", "When do you want to be reminded?")]
string time,
[Option("text", "What should the reminder say?")] [MaximumLength(1000)]
string text,
string text = "",
[Option("private", "Whether to keep this reminder private. It will be sent in DMs.")]
bool isPrivate = false)
{
Expand Down

0 comments on commit 36e49d3

Please sign in to comment.