Added Kun/On readings to kanji search

This commit is contained in:
Robert 2020-08-11 17:34:22 +02:00
parent d3cbf5b5ab
commit b333bbad41
3 changed files with 98 additions and 10 deletions

View file

@ -67,15 +67,15 @@ class Search(commands.Cog):
if reaction.me:
if reaction.emoji == "⬅️":
self.activeObject.prev()
await reaction.remove(user)
if reaction.emoji == "➡️":
self.activeObject.next()
await reaction.remove(user)
embed = await self.createEmbed()
await message.edit(embed=embed)
await reaction.remove(user)
@commands.command(name="search", description="Searches Jisho", usage="<query>", aliases=["s"])
@commands.cooldown(1, 5)
@ -87,8 +87,10 @@ class Search(commands.Cog):
embed = await self.createEmbed()
message = await ctx.send(embed=embed)
self.latestMessage = message.id
await message.add_reaction("⬅️")
await message.add_reaction("➡️")
if self.activeObject.total_pages > 1:
await message.add_reaction("⬅️")
await message.add_reaction("➡️")
@search.error
async def search_error(self, ctx, error):