diff options
author | 2021-09-08 17:47:20 +0300 | |
---|---|---|
committer | 2021-09-08 17:47:20 +0300 | |
commit | 52e82e69b18ea0f305f970f776afb75b284c7453 (patch) | |
tree | be2cdd658cbc1fb0f39d89dcb655d3dbe542bed5 | |
parent | Wikiguess Game (#618) (diff) |
Added Hanukka command in November month.
This is a solution for the #862 issue, which says the Hanukka holiday can also be in November and not only in December.
-rw-r--r-- | bot/exts/holidays/hanukkah/hanukkah_embed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/holidays/hanukkah/hanukkah_embed.py b/bot/exts/holidays/hanukkah/hanukkah_embed.py index 00125be3..ac3eab7b 100644 --- a/bot/exts/holidays/hanukkah/hanukkah_embed.py +++ b/bot/exts/holidays/hanukkah/hanukkah_embed.py @@ -37,7 +37,7 @@ class HanukkahEmbed(commands.Cog): hanukkah_dates.append(date) return hanukkah_dates - @in_month(Month.DECEMBER) + @in_month(Month.NOVEMBER, Month.DECEMBER) @commands.command(name="hanukkah", aliases=("chanukah",)) async def hanukkah_festival(self, ctx: commands.Context) -> None: """Tells you about the Hanukkah Festivaltime of festival, festival day, etc).""" |