aboutsummaryrefslogtreecommitdiff
path: root/src/commands/server-config/prefix.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-26 21:53:35 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-26 21:53:35 -0400
commitcd0f853a2e4732cea5356f9ee3603bb804b0ab1f (patch)
treeac2f6ced46dfae7ca376e4dbd957d99a341d86a9 /src/commands/server-config/prefix.ts
parent0caccda67d97dd74405aa4ece5d3f07e7c7dfc66 (diff)
downloadtanzanite-cd0f853a2e4732cea5356f9ee3603bb804b0ab1f.tar.gz
tanzanite-cd0f853a2e4732cea5356f9ee3603bb804b0ab1f.tar.bz2
tanzanite-cd0f853a2e4732cea5356f9ee3603bb804b0ab1f.zip
made some more changes
Diffstat (limited to 'src/commands/server-config/prefix.ts')
-rw-r--r--src/commands/server-config/prefix.ts71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/commands/server-config/prefix.ts b/src/commands/server-config/prefix.ts
deleted file mode 100644
index ac85922..0000000
--- a/src/commands/server-config/prefix.ts
+++ /dev/null
@@ -1,71 +0,0 @@
-import { ApplicationCommandOptionType } from 'discord-api-types';
-import { CommandInteraction, Message, Guild as DiscordGuild } from 'discord.js';
-import { BushCommand } from '../../lib/extensions/BushCommand';
-import { SlashCommandOption } from '../../lib/extensions/Util';
-import { Guild } from '../../lib/models';
-
-export default class PrefixCommand extends BushCommand {
- constructor() {
- super('prefix', {
- aliases: ['prefix'],
- category: "server config",
- args: [
- {
- id: 'prefix'
- }
- ],
- userPermissions: ['MANAGE_GUILD'],
- description: {
- content:
- 'Set the prefix of the current server (resets to default if prefix is not given)',
- usage: 'prefix [prefix]',
- examples: ['prefix', 'prefix +']
- },
- slashCommandOptions: [
- {
- type: ApplicationCommandOptionType.STRING,
- name: 'prefix',
- description: 'The prefix to set for this server',
- required: false
- }
- ]
- });
- }
-
- async changePrefix(guild: DiscordGuild, prefix?: string): Promise<void> {
- if (prefix) {
- const row = await Guild.findByPk(guild.id);
- row.prefix = prefix;
- await row.save();
- } else {
- const row = await Guild.findByPk(guild.id);
- row.prefix = this.client.config.prefix;
- await row.save();
- }
- }
-
- async exec(message: Message, { prefix }: { prefix?: string }): Promise<void> {
- await this.changePrefix(message.guild, prefix);
- if (prefix) {
- await message.util.send(`Sucessfully set prefix to \`${prefix}\``);
- } else {
- await message.util.send(
- `Sucessfully reset prefix to \`${this.client.config.prefix}\``
- );
- }
- }
-
- async execSlash(
- message: CommandInteraction,
- { prefix }: { prefix?: SlashCommandOption<string> }
- ): Promise<void> {
- await this.changePrefix(message.guild, prefix?.value);
- if (prefix) {
- await message.reply(`Sucessfully set prefix to \`${prefix.value}\``);
- } else {
- await message.reply(
- `Sucessfully reset prefix to \`${this.client.config.prefix}\``
- );
- }
- }
-}