remove trickortreat
This commit is contained in:
parent
ad2b049ece
commit
7beee8df70
@ -16,6 +16,7 @@ namespace NadekoBot.Modules.Games
|
||||
- Shiritori
|
||||
- Simple RPG adventure
|
||||
*/
|
||||
//todo update docs
|
||||
public partial class Games : NadekoTopLevelModule<GamesService>
|
||||
{
|
||||
private readonly IImagesService _images;
|
||||
@ -24,35 +25,35 @@ namespace NadekoBot.Modules.Games
|
||||
{
|
||||
_images = images;
|
||||
}
|
||||
#if GLOBAL_NADEKO
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
[RequireContext(ContextType.Guild)]
|
||||
public async Task TrickOrTreat()
|
||||
{
|
||||
if (DateTime.UtcNow.Day != 31 ||
|
||||
DateTime.UtcNow.Month != 10
|
||||
|| !_service.HalloweenAwardedUsers.Add(Context.User.Id)
|
||||
)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (await _service.GetTreat(Context.User.Id))
|
||||
{
|
||||
await Context.Channel
|
||||
.SendConfirmAsync($"You've got a treat of 10🍬! Happy Halloween!")
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel
|
||||
.EmbedAsync(new EmbedBuilder()
|
||||
.WithDescription("No treat for you :c Happy Halloween!")
|
||||
.WithImageUrl("http://tinyurl.com/ybntddbb")
|
||||
.WithErrorColor())
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
//#if GLOBAL_NADEKO
|
||||
// [NadekoCommand, Usage, Description, Aliases]
|
||||
// [RequireContext(ContextType.Guild)]
|
||||
// public async Task TrickOrTreat()
|
||||
// {
|
||||
// if (DateTime.UtcNow.Day != 31 ||
|
||||
// DateTime.UtcNow.Month != 10
|
||||
// || !_service.HalloweenAwardedUsers.Add(Context.User.Id)
|
||||
// )
|
||||
// {
|
||||
// return;
|
||||
// }
|
||||
// if (await _service.GetTreat(Context.User.Id))
|
||||
// {
|
||||
// await Context.Channel
|
||||
// .SendConfirmAsync($"You've got a treat of 10🍬! Happy Halloween!")
|
||||
// .ConfigureAwait(false);
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel
|
||||
// .EmbedAsync(new EmbedBuilder()
|
||||
// .WithDescription("No treat for you :c Happy Halloween!")
|
||||
// .WithImageUrl("http://tinyurl.com/ybntddbb")
|
||||
// .WithErrorColor())
|
||||
// .ConfigureAwait(false);
|
||||
// }
|
||||
// }
|
||||
//#endif
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
public async Task Choose([Remainder] string list = null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user