Ticket creation error handling

This commit is contained in:
Isaac
2021-05-11 11:52:23 +01:00
parent 10f449fc2d
commit c9609a41b5
8 changed files with 28 additions and 22 deletions

View File

@@ -25,7 +25,6 @@ module.exports = class BlacklistCommand extends Command {
}
async execute(message, args) {
let settings = await message.guild.settings;
const i18n = this.client.i18n.getLocale(settings.locale);
@@ -101,6 +100,5 @@ module.exports = class BlacklistCommand extends Command {
settings.blacklist = new_blacklist;
await settings.save();
}
};