mirror of
https://github.com/NoiTheCat/BirthdayBot.git
synced 2024-11-21 21:54:36 +00:00
Add timezone set reminder (#61)
Awaiting feedback; message may be changed.
This commit is contained in:
parent
a15b5fd6cf
commit
8c6350c098
1 changed files with 6 additions and 2 deletions
|
@ -54,8 +54,12 @@ public class BirthdayModule : BotModuleBase {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
await RespondAsync($":white_check_mark: Your birthday has been set to **{FormatDate(inmonth, inday)}**" +
|
var response = $":white_check_mark: Your birthday has been set to **{FormatDate(inmonth, inday)}**";
|
||||||
(inzone == null ? "" : $" at time zone **{inzone}**") + ".").ConfigureAwait(false);
|
if (inzone != null) response += $" at time zone **{inzone}**";
|
||||||
|
response += ".";
|
||||||
|
if (user.TimeZone == null)
|
||||||
|
response += "\n(Tip: The `/birthday set timezone` command ensures your birthday is recognized just in time!)";
|
||||||
|
await RespondAsync(response).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[SlashCommand("timezone", HelpCmdSetZone)]
|
[SlashCommand("timezone", HelpCmdSetZone)]
|
||||||
|
|
Loading…
Reference in a new issue