前提・実現したいこと
おみくじを一日一回限定にしたいです
発生している問題・エラーメッセージ
とくになし
該当のソースコード
py
1@commands.command(name="omikuji") 2 async def omikuji(self, ctx): 3 omikuzi = [ 4 "大吉だよ!\nおめでとう" if i < 2 else 5 "中吉" if 2 <= i < 10 else 6 "小吉" if 10 <= i < 20 else 7 "吉" if 20 <= i < 40 else 8 "末吉" if 40 <= i < 50 else 9 "凶" if 50 <= i < 55 else 10 "中凶" if 55 <= i < 59 else 11 "大凶" for i in range(61)] 12 e = discord.Embed(title="おみくじ~") 13 e.set_thumbnail(url=ctx.author.avatar_url) 14 15 msg = await ctx.send(embed=e) 16 async with ctx.typing(): 17 e = discord.Embed(title="おみくじ~", description="がらがら~~") 18 e.set_thumbnail(url=ctx.author.avatar_url) 19 20 await asyncio.sleep(2) 21 await msg.edit(content=None, embed=e) 22 23 async with ctx.typing(): 24 e = discord.Embed(title="おみくじ") 25 e.set_thumbnail(url=ctx.author.avatar_url) 26 e.add_field(name="結果!", value=omikuzi[random.randrange(len(omikuzi))]) 27 await asyncio.sleep(2) 28 await msg.edit(content=None, embed=e)
試したこと
色々調べてみましたがわからないです
補足情報(FW/ツールのバージョンなど)
discord.py 3.8.6
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。