1
0
Fork 0
mirror of synced 2024-05-02 19:52:25 +12:00

Correct what to lookup in tag info

This commit is contained in:
phxntxm 2019-02-17 13:47:34 -06:00
parent be971dda94
commit 2e6903dfc9

View file

@ -211,7 +211,7 @@ class Tags:
"""Shows some information a bout the tag given"""
tag = await self.bot.db.fetchrow(
"SELECT creator, uses, trigger FROM tags WHERE guild=$1 AND trigger=$3",
"SELECT creator, uses, trigger FROM tags WHERE guild=$1 AND trigger=$2",
ctx.guild.id,
trigger
)
@ -226,6 +226,5 @@ class Tags:
await ctx.send(embed=embed)
def setup(bot):
bot.add_cog(Tags(bot))