Skip to content

Commit

Permalink
feat(koto, kusari & koto): Add description for people looking for tut…
Browse files Browse the repository at this point in the history
…orial command
  • Loading branch information
jurienhamaker committed Aug 12, 2024
1 parent 984d98a commit 54b5db8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
6 changes: 5 additions & 1 deletion apps/kazu/src/commands/help.commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ export class HelpCommands {
const footer = await getEmbedFooter(this._client);
const embed = new EmbedBuilder()
.setTitle(`Kazu Setup`)
.setDescription(noSettingsDescription)
.setDescription(
`${noSettingsDescription}
Want to know how to play the game? Use \`/tutorial\`!`,
)
.setColor(EMBED_COLOR)
.setFooter(footer);

Expand Down
10 changes: 7 additions & 3 deletions apps/koto/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 @@ -17,7 +17,11 @@ export class HelpCommands {
const footer = await getEmbedFooter(this._client);
const embed = new EmbedBuilder()
.setTitle(`Koto Setup`)
.setDescription(noSettingsDescription)
.setDescription(
`${noSettingsDescription}
Want to know how to play the game? Use \`/tutorial\`!`,
)
.setColor(EMBED_COLOR)
.setFooter(footer);

Expand Down
6 changes: 5 additions & 1 deletion apps/kusari/src/commands/help.commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ export class HelpCommands {
const footer = await getEmbedFooter(this._client);
const embed = new EmbedBuilder()
.setTitle(`Kusari Setup`)
.setDescription(noSettingsDescription)
.setDescription(
`${noSettingsDescription}
Want to know how to play the game? Use \`/tutorial\`!`,
)
.setColor(EMBED_COLOR)
.setFooter(footer);

Expand Down

0 comments on commit 54b5db8

Please sign in to comment.