1
0
Fork 0

fixed horrible typo

akairo
Loïc Bersier 5 years ago
parent fb3bd8a85c
commit be1e85841f

@ -30,7 +30,7 @@ class UnTagCommand extends Command {
const tag = await Tag.findOne({where: {trigger: args.trigger, serverID: message.guild.id}});
if (tag) {
Tag.destroy({where: {trigger: args.trigger, serverID: message.guild.id}});
return message.channel.send('Sucesffuly deleted the following tag: ' + args.trigger);
return message.channel.send('successfully deleted the following tag: ' + args.trigger);
} else {
return message.channel.send('Did not find the specified tag, are you sure it exist?');
}

@ -31,7 +31,7 @@ class removeResponseCommand extends Command {
const autoresponse = await autoResponse.findOne({where: {trigger: args.trigger}});
if (autoresponse) {
autoResponse.destroy({where: {trigger: args.trigger}});
return message.channel.send('Sucesffuly deleted the following autoresponse: ' + args.trigger);
return message.channel.send('successfully deleted the following autoresponse: ' + args.trigger);
} else {
return message.channel.send('Did not find the specified autoresponse, are you sure it exist?');
}

Loading…
Cancel
Save