Skip to content

Commit

Permalink
fix(kazu & kusari): Fix help command embed title
Browse files Browse the repository at this point in the history
  • Loading branch information
jurienhamaker committed Aug 12, 2024
1 parent 0b32147 commit 984d98a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions apps/kazu/src/commands/help.commands.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Injectable } from '@nestjs/common';
import { EMBED_COLOR } from '../util/constants';
import { noSettingsDescription } from '../util/no-settings-reply';
import { getEmbedFooter } from '@yugen/util';
import { Client, EmbedBuilder } from 'discord.js';
import { Context, SlashCommand, SlashCommandContext } from 'necord';
import { EMBED_COLOR } from '../util/constants';
import { noSettingsDescription } from '../util/no-settings-reply';

@Injectable()
export class HelpCommands {
Expand All @@ -16,7 +16,7 @@ export class HelpCommands {
public async invite(@Context() [interaction]: SlashCommandContext) {
const footer = await getEmbedFooter(this._client);
const embed = new EmbedBuilder()
.setTitle(`Koto Setup`)
.setTitle(`Kazu Setup`)
.setDescription(noSettingsDescription)
.setColor(EMBED_COLOR)
.setFooter(footer);
Expand Down
6 changes: 3 additions & 3 deletions apps/kusari/src/commands/help.commands.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Injectable } from '@nestjs/common';
import { EMBED_COLOR } from '../util/constants';
import { noSettingsDescription } from '../util/no-settings-reply';
import { getEmbedFooter } from '@yugen/util';
import { Client, EmbedBuilder } from 'discord.js';
import { Context, SlashCommand, SlashCommandContext } from 'necord';
import { EMBED_COLOR } from '../util/constants';
import { noSettingsDescription } from '../util/no-settings-reply';

@Injectable()
export class HelpCommands {
Expand All @@ -16,7 +16,7 @@ export class HelpCommands {
public async invite(@Context() [interaction]: SlashCommandContext) {
const footer = await getEmbedFooter(this._client);
const embed = new EmbedBuilder()
.setTitle(`Koto Setup`)
.setTitle(`Kusari Setup`)
.setDescription(noSettingsDescription)
.setColor(EMBED_COLOR)
.setFooter(footer);
Expand Down

0 comments on commit 984d98a

Please sign in to comment.