Move Settings to their own group

This commit is contained in:
Daniel Odendahl Jr
2017-05-19 13:43:56 +00:00
parent dcf95ec01a
commit 5440580027
8 changed files with 8 additions and 7 deletions
@@ -4,7 +4,7 @@ module.exports = class ClearSettingCommand extends Command {
constructor(client) {
super(client, {
name: 'clear-setting',
group: 'util',
group: 'settings',
memberName: 'clear-setting',
description: 'Removes a custom-set Guard Mode, Mod Channel, Member Channel, Member Message, Staff Role, or Single Role.',
guildOnly: true,
@@ -5,7 +5,7 @@ module.exports = class GuardCommand extends Command {
super(client, {
name: 'invite-guard',
aliases: ['guard'],
group: 'util',
group: 'settings',
memberName: 'invite-guard',
description: 'Configures auto-delete for invites.',
guildOnly: true
@@ -4,7 +4,7 @@ module.exports = class MemberLogCommand extends Command {
constructor(client) {
super(client, {
name: 'member-channel',
group: 'util',
group: 'settings',
memberName: 'member-channel',
description: 'Sets the channel for the member logs to be sent.',
guildOnly: true,
@@ -5,7 +5,7 @@ module.exports = class MemberMsgCommand extends Command {
super(client, {
name: 'member-message',
aliases: ['member-msg'],
group: 'util',
group: 'settings',
memberName: 'member-message',
description: 'Sets the message for either join/leave logs to use.',
details: '**Placeholders:** <user>: Username, <server>: Server Name, <mention>: A Mention of the User',
@@ -4,7 +4,7 @@ module.exports = class ModChannelCommand extends Command {
constructor(client) {
super(client, {
name: 'mod-channel',
group: 'util',
group: 'settings',
memberName: 'mod-channel',
description: 'Sets the channel for the mod logs to be sent.',
guildOnly: true,
@@ -4,7 +4,7 @@ module.exports = class SingleRoleCommand extends Command {
constructor(client) {
super(client, {
name: 'single-role',
group: 'util',
group: 'settings',
memberName: 'single-role',
description: 'Sets a single role that is able to use commands.',
guildOnly: true,
@@ -4,7 +4,7 @@ module.exports = class StaffRoleCommand extends Command {
constructor(client) {
super(client, {
name: 'staff-role',
group: 'util',
group: 'settings',
memberName: 'staff-role',
description: 'Sets the role that can use Mod Commands without perms.',
guildOnly: true,
+1
View File
@@ -29,6 +29,7 @@ client.registry
['userinfo', 'User Info'],
['guildinfo', 'Server Info'],
['moderation', 'Moderation'],
['settings', 'Server Settings'],
['response', 'Random Response'],
['randomimg', 'Random Image'],
['avataredit', 'Avatar Manipulation'],