def nitro_sendto(self, ctx, *, channel: discord.TextChannel):
"""Send a fake Nitro message embed to a channel.
Usage: nitro_sendto [channel]"""
emb = self.get_nitro_embed()
with channel.typing():
await asyncio.sleep(random.uniform(0.25, 1.2), loop=self.loop)
await channel.send(embed=emb)
评论列表
文章目录