Minor Fix

This commit is contained in:
Daniel Odendahl Jr
2017-05-14 22:03:40 +00:00
parent c57d218997
commit a39f7a2ae2
+1 -1
View File
@@ -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.`);
}
};