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 = [],