From 744327adab181a85a262d14bb4e1e3cf959c68f5 Mon Sep 17 00:00:00 2001 From: Emily J Date: Fri, 23 Oct 2020 14:26:00 +1100 Subject: [PATCH] remove guildOnly --- bot/commands/Developer/eval.js | 1 - bot/commands/Developer/reload.js | 1 - bot/commands/Test/hello.js | 1 - examples/exampleCommand.js | 1 - 4 files changed, 4 deletions(-) diff --git a/bot/commands/Developer/eval.js b/bot/commands/Developer/eval.js index 54fa63a..519b877 100644 --- a/bot/commands/Developer/eval.js +++ b/bot/commands/Developer/eval.js @@ -3,7 +3,6 @@ module.exports = class { this.name = name, this.category = category, this.enabled = true, - this.guildOnly = false, this.devOnly = true, this.aliases = [], this.userPerms = [], diff --git a/bot/commands/Developer/reload.js b/bot/commands/Developer/reload.js index eb0bfe2..440ac8d 100644 --- a/bot/commands/Developer/reload.js +++ b/bot/commands/Developer/reload.js @@ -3,7 +3,6 @@ module.exports = class { this.name = name, this.category = category, this.enabled = true, - this.guildOnly = false, this.devOnly = true, this.aliases = [], this.userPerms = [], diff --git a/bot/commands/Test/hello.js b/bot/commands/Test/hello.js index 7fb3a8a..fb4b081 100644 --- a/bot/commands/Test/hello.js +++ b/bot/commands/Test/hello.js @@ -3,7 +3,6 @@ module.exports = class { this.name = name, this.category = category, this.enabled = true, - this.guildOnly = false, this.devOnly = false, this.aliases = [], this.userPerms = ['administrator'], diff --git a/examples/exampleCommand.js b/examples/exampleCommand.js index dd90f35..7f514e3 100644 --- a/examples/exampleCommand.js +++ b/examples/exampleCommand.js @@ -6,7 +6,6 @@ module.exports = class { this.name = name, this.category = category, this.enabled = true, - this.guildOnly = false, this.devOnly = false, this.aliases = [], this.userPerms = [],