@@ -84,21 +84,21 @@ def msg():
84
84
@commands .command (aliases = ['8ball' ])
85
85
async def ask8 (self , ctx ):
86
86
"""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. " ]))
102
102
embed = discord .Embed (title = "🎱 8ball" , description = response , color = client_role_color (self , ctx ), timestamp = datetime .utcnow ())
103
103
embed .set_footer (icon_url = self .client .user .avatar_url , text = self .client .user .name )
104
104
await ctx .send (embed = embed )
@@ -168,12 +168,7 @@ async def gay(self, ctx, user: discord.Member=None):
168
168
elif user .id == 254204775497859073 :
169
169
n = int (0 )
170
170
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 ())
177
172
embed .set_footer (icon_url = self .client .user .avatar_url , text = self .client .user .name )
178
173
await ctx .send (embed = embed )
179
174
0 commit comments