diff --git a/commands/info/server.js b/commands/info/server.js index 8fa8701d..e129f31b 100644 --- a/commands/info/server.js +++ b/commands/info/server.js @@ -2,8 +2,18 @@ const Command = require('../../structures/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const { stripIndents } = require('common-tags'); -const filterLevels = ['Off', 'No Role', 'Everyone']; -const verificationLevels = ['None', 'Low', 'Medium', '(╯°□°)╯︵ ┻━┻', '┻━┻ ミヽ(ಠ益ಠ)ノ彡┻━┻']; +const filterLevels = { + DISABLED: 'Off', + MEMBERS_WITHOUT_ROLES: 'No Role', + ALL_MEMBERS: 'Everyone' +}; +const verificationLevels = { + NONE: 'None', + LOW: 'Low', + MEDIUM: 'Medium', + HIGH: '(╯°□°)╯︵ ┻━┻', + VERY_HIGH: '┻━┻ ミヽ(ಠ益ಠ)ノ彡┻━┻' +}; module.exports = class ServerCommand extends Command { constructor(client) { diff --git a/package.json b/package.json index 7d2fa98d..b3e2d37e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "113.0.1", + "version": "113.0.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {