1
0
Fork 0
mirror of synced 2024-05-03 04:02:28 +12:00

Ensure entry exists before trying to set anything

This commit is contained in:
phxntxm 2019-02-17 14:07:26 -06:00
parent f836c146df
commit b2f2120529

View file

@ -726,6 +726,9 @@ WHERE
except AttributeError:
await ctx.send(f"{option} is not a valid config option. Use {ctx.prefix}config to list all config options")
else:
# First make sure there's an entry for this guild before doing anything
await ctx.bot.db.execute("INSERT INTO guilds(id) VALUES ($1)", ctx.guild.id)
try:
await coro(ctx, setting=setting)
except WrongSettingType as exc: