【发布时间】:2021-07-18 19:29:46
【问题描述】:
我有一个不和谐的机器人,除非填写了某个参数,否则我想阻止它运行。
这是机器人的当前代码:
@bot.before_invoke
async def checkguild(message):
command = message.command
if command != 'settings':
if not message.guild.id in globaldb.servers_setup.val:
for required_setting in REQUIRED_SETTINGS: # Iterates through the required settings to make sure they're all defined.
if not get_guild_db(message.guild).settings.has(required_setting):
# Prevent command from running, and call the on_command_error function instead of just throwing an error.
globaldb.set('servers_setup', globaldb.servers_setup.val + [message.guild.id])
globaldb.save() # Otherwise add the server to the database as set up.
我想按照中间评论说的做,
# Prevent command from running, and call the on_command_error function instead of just throwing an error.
但是我该怎么做呢? (检查下面的答案)
【问题讨论】:
标签: python python-3.x discord discord.py