diff --git a/commands/util/clearsetting.js b/commands/util/clearsetting.js index 5a2f1f21..0a245867 100644 --- a/commands/util/clearsetting.js +++ b/commands/util/clearsetting.js @@ -29,6 +29,6 @@ module.exports = class ClearSettingCommand extends Command { run(msg, args) { const { setting } = args; msg.guild.settings.remove(setting); - return msg.say(`${setting} has been removed from your guild settings.`); + return msg.say(`${setting} has been removed from your server settings.`); } };