Fixed Reactions

This commit is contained in:
Lukas Blacha
2023-02-10 19:28:10 +01:00
parent be7002bba5
commit f55d45232c

View File

@@ -2,7 +2,6 @@ import asyncio
import re import re
from datetime import timedelta from datetime import timedelta
from pytube import YouTube from pytube import YouTube
import aiohttp import aiohttp
import yt_dlp import yt_dlp
import discord import discord
@@ -255,10 +254,11 @@ else:
await ctx.respond(f"{success}**A short selection of videos will be displayed shortly...**") await ctx.respond(f"{success}**A short selection of videos will be displayed shortly...**")
msg = await ctx.send(embed=embed) msg = await ctx.send(embed=embed)
await msg.add_reaction(discord.PartialEmoji(name='one')) await msg.add_reaction(discord.PartialEmoji(name='one'))
await msg.add_reaction('') await msg.add_reaction('1')
await msg.add_reaction('three') await msg.add_reaction('2')
await msg.add_reaction('four') await msg.add_reaction('3')
await msg.add_reaction('five') await msg.add_reaction('4')
await msg.add_reaction('5')
""" """