Python
1@client.command() 2@commands.has_permissions(administrator=True) 3async def role(ctx,role:discord.Role,user:discord.Member): 4 if user.has_role(role): 5 await ctx.send('a') 6 else: 7 await ctx.send('b')
Discord.pyでこのロールを持っていればa、持っていなければbと表示させたいんですが動作不可です。原因を教えて欲しいです
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。