Skip to content

Commit

Permalink
Capitalises 'I' in reminds
Browse files Browse the repository at this point in the history
  • Loading branch information
Voltstro committed Dec 21, 2019
1 parent fffc66f commit 55c407c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Pootis-Bot/Modules/Basic/Misc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ await _voteGiveawayService.StartVote(Context.Guild, Context.Channel, Context.Use
[Command("reminds", RunMode = RunMode.Async)]
[Summary("Reminds you, duh (In Seconds)")]
[Alias("res")]
public async Task Remind(int seconds, [Remainder] string remindmsg)
public async Task Remind(int seconds, [Remainder] string remindMsg)
{
await Context.Channel.SendMessageAsync(
$"Ok, i will send you the message '{remindmsg}' in {seconds} seconds.");
await ReminderService.RemindAsyncSeconds(Context.User, seconds, remindmsg);
$"Ok, I will send you the message '{remindMsg}' in {seconds} seconds.");
await ReminderService.RemindAsyncSeconds(Context.User, seconds, remindMsg);
}
}
}

0 comments on commit 55c407c

Please sign in to comment.