diff options
author | 2020-09-25 18:21:36 +0530 | |
---|---|---|
committer | 2020-09-25 18:21:36 +0530 | |
commit | f211cd27453578926f008f9a35735e23e7419e8f (patch) | |
tree | 6a8314db671139a23832cff64ecc2d32041b412f /bot | |
parent | changed p1 to explanation file and p2 to compatible file to work with code (diff) |
changed zodiac sign to self.zodiac sign
Co-authored-by: Rohan Reddy Alleti <[email protected]>
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/valentines/valentine_zodiac.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/valentines/valentine_zodiac.py b/bot/exts/valentines/valentine_zodiac.py index af1b3c0d..5bdc39ec 100644 --- a/bot/exts/valentines/valentine_zodiac.py +++ b/bot/exts/valentines/valentine_zodiac.py @@ -49,7 +49,7 @@ class ValentineZodiac(commands.Cog): zodiac_fact = self.zodiac_fact embed = discord.Embed() embed.color = Colours.pink - if zodiac in ZODIAC_SIGNS: + if zodiac in self.zodiac_fact: log.info("Making zodiac embed") embed.title = f"__{zodiac}__" embed.description = zodiac_fact[f"{zodiac}"]["About"] |