Skip to content

Commit 4040900

Browse files
reminders: Tweak phrasing
1 parent 36ad1e6 commit 4040900

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Commands/ReminderCommands.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ await ctx.FollowupAsync(
4747
{
4848
await ctx.FollowupAsync(
4949
new DiscordFollowupMessageBuilder()
50-
.WithContent("You can't set a reminder to go off in the past!").AsEphemeral(isPrivate));
50+
.WithContent("You can't set a reminder for a time in the past!").AsEphemeral(isPrivate));
5151
return;
5252
}
5353
}
@@ -182,7 +182,7 @@ reminderCmd is null
182182
? $"[Set <t:{setTime}:R>]({reminderLink}). This reminder will not be sent automatically."
183183
+ " This reminder was set privately, so this is only a link to the messages around the time it was set."
184184
: $"[Set <t:{setTime}:R>]({reminderLink}). This reminder will not be sent automatically."
185-
: $"[Set <t:{setTime}:R>]({reminderLink}) to go off <t:{reminderTime}:R>");
185+
: $"[Set <t:{setTime}:R>]({reminderLink}) to remind you <t:{reminderTime}:R>");
186186

187187
if (reminder.ReminderTime is not null) output += reminderLocation;
188188

@@ -215,7 +215,7 @@ reminderCmd is null
215215

216216
desc += reminder.ReminderTime is null
217217
? $"`{reminder.ReminderId}` - set <t:{setTime}:R>. This reminder will not be sent automatically."
218-
: $"`{reminder.ReminderId}` - set <t:{setTime}:R> to go off <t:{reminderTime}:R>\n";
218+
: $"`{reminder.ReminderId}` - set <t:{setTime}:R> to remind you <t:{reminderTime}:R>\n";
219219
}
220220

221221
embed.WithDescription(desc.Trim());
@@ -436,7 +436,7 @@ await ctx.FollowupAsync(
436436
{
437437
await ctx.FollowupAsync(
438438
new DiscordFollowupMessageBuilder()
439-
.WithContent("You can't set a reminder to go off in the past!").AsEphemeral(isPrivate));
439+
.WithContent("You can't set a reminder for a time in the past!").AsEphemeral(isPrivate));
440440
return;
441441
}
442442
}
@@ -555,4 +555,4 @@ await ctx.FollowupAsync(
555555

556556
[GeneratedRegex("[0-9]+")]
557557
private static partial Regex IdPattern();
558-
}
558+
}

0 commit comments

Comments
 (0)