Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit 951e15e

Browse files
author
notLeM
committed
Updated some embeds to look nice after the changes
1 parent d817c2c commit 951e15e

File tree

3 files changed

+103
-132
lines changed

3 files changed

+103
-132
lines changed

cogs/fun.py

+16-21
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,21 @@ def msg():
8484
@commands.command(aliases=['8ball'])
8585
async def ask8(self, ctx):
8686
"""CATEG_FUN Ask the almighty 8ball a question."""
87-
response=(random.choice(["It is certain :8ball:",
88-
"It is decidedly so :8ball:",
89-
"Without a doubt :8ball:",
90-
"Yes, definitely :8ball:",
91-
"You may rely on it :8ball:",
92-
"As I see it, yes :8ball:",
93-
"Most likely :8ball:",
94-
"Outlook good :8ball:",
95-
"Yes :8ball:",
96-
"Signs point to yes :8ball:",
97-
"Don't count on it :8ball:",
98-
"My reply is no :8ball:",
99-
"My sources say no :8ball:",
100-
"Outlook not so good :8ball:",
101-
"Very doubtful :8ball:"]))
87+
response=(random.choice(["It is certain.",
88+
"It is decidedly so.",
89+
"Without a doubt.",
90+
"Yes, definitely.",
91+
"You may rely on it.",
92+
"As I see it, yes.",
93+
"Most likely.",
94+
"Outlook good.",
95+
"Yes.",
96+
"Signs point to yes.",
97+
"Don't count on it.",
98+
"My reply is no.",
99+
"My sources say no.",
100+
"Outlook not so good.",
101+
"Very doubtful."]))
102102
embed=discord.Embed(title="🎱 8ball", description=response, color=client_role_color(self, ctx), timestamp=datetime.utcnow())
103103
embed.set_footer(icon_url=self.client.user.avatar_url, text=self.client.user.name)
104104
await ctx.send(embed=embed)
@@ -168,12 +168,7 @@ async def gay(self, ctx, user: discord.Member=None):
168168
elif user.id == 254204775497859073:
169169
n = int(0)
170170

171-
if n <= 50:
172-
emoji = ":smile:"
173-
if n > 50:
174-
emoji = ":gay_pride_flag:"
175-
176-
embed=discord.Embed(title="🏳️‍🌈 Gay", description="{} is **{}% gay.** {}".format(user, n, emoji), color=client_role_color(self, ctx), timestamp=datetime.utcnow())
171+
embed=discord.Embed(title="🏳️‍🌈 Gay", description="{} is **{}% gay.**".format(user, n), color=client_role_color(self, ctx), timestamp=datetime.utcnow())
177172
embed.set_footer(icon_url=self.client.user.avatar_url, text=self.client.user.name)
178173
await ctx.send(embed=embed)
179174

0 commit comments

Comments
 (0)