fix(galaxy): fixed the gank_won_let_us_flee method erroring every time the bot is dmed
All checks were successful
Pylint / Pylint (push) Successful in 1m11s
All checks were successful
Pylint / Pylint (push) Successful in 1m11s
This commit is contained in:
parent
7aaabfa14c
commit
645de0abd8
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class Galaxy(commands.Cog):
|
|||
|
||||
@commands.Cog.listener('on_message')
|
||||
async def gank_won_let_us_flee(self, message: discord.Message):
|
||||
if message.guild.id == 204965774618656769 and message.channel.id == 753714180900519937 and message.author.id == 745790085789909033:
|
||||
if message.author.id == 745790085789909033 and message.guild.id == 204965774618656769 and message.channel.id == 753714180900519937:
|
||||
gank_media_list = [
|
||||
"https://cdn.discordapp.com/attachments/1070838419212738621/1155174309711577138/gank_won_let_us_flee.gif",
|
||||
"https://cdn.discordapp.com/attachments/1070838419212738621/1155174310093262951/spin_back_I_dare_you.jpg",
|
||||
|
|
Loading…
Reference in a new issue