aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-09-07 09:47:14 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-09-07 09:47:14 -0400
commit1b6d56162bae1d9119f0641df1092ab6a92df620 (patch)
tree2596f6f949b7b727df699d2c1856d54349ba1da7 /src/commands
parent6c9d967ae526a4a1eee1754a82b09dbadb218f82 (diff)
downloadtanzanite-1b6d56162bae1d9119f0641df1092ab6a92df620.tar.gz
tanzanite-1b6d56162bae1d9119f0641df1092ab6a92df620.tar.bz2
tanzanite-1b6d56162bae1d9119f0641df1092ab6a92df620.zip
fix config being owner only, fix direct message id footer and fix leveing listner not saving new entries
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/config/config.ts3
-rw-r--r--src/commands/config/features.ts1
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/config/config.ts b/src/commands/config/config.ts
index dc31b5b..ac3198b 100644
--- a/src/commands/config/config.ts
+++ b/src/commands/config/config.ts
@@ -106,8 +106,7 @@ export default class SettingsCommand extends BushCommand {
}),
channel: 'guild',
clientPermissions: ['SEND_MESSAGES'],
- userPermissions: ['SEND_MESSAGES', 'MANAGE_GUILD'],
- ownerOnly: true
+ userPermissions: ['SEND_MESSAGES', 'MANAGE_GUILD']
});
}
diff --git a/src/commands/config/features.ts b/src/commands/config/features.ts
index 2169177..8010ab9 100644
--- a/src/commands/config/features.ts
+++ b/src/commands/config/features.ts
@@ -17,6 +17,7 @@ export default class FeaturesCommand extends BushCommand {
userPermissions: ['SEND_MESSAGES', 'MANAGE_GUILD']
});
}
+
public override async exec(message: BushMessage | BushSlashMessage): Promise<unknown> {
if (!message.guild) return await message.util.reply(`${util.emojis.error} This command can only be used in servers.`);