1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-19 16:33:36 +03:00

Update RemindCommand.cs

This commit is contained in:
mctaylors 2023-02-01 22:00:09 +03:00
parent b69e0e16e7
commit f31cc8da5c

View file

@ -16,7 +16,7 @@ public sealed class RemindCommand : ICommand {
ReminderText = reminderText,
ReminderChannel = cmd.Context.Channel.Id
});
var feedback = string.Format(Messages.FeedbackReminderAdded, DateTimeOffset.Now.Add(remindIn).ToUnixTimeSeconds().ToString());
var feedback = string.Format(Messages.FeedbackReminderAdded, DateTimeOffset.Now.Add(remindIn).ToUnixTimeSeconds());
cmd.Reply(feedback, ReplyEmojis.Success);
cmd.Audit(feedback);
}