From 54b5db850dac87d6c234b9a9608196397f1cb7b0 Mon Sep 17 00:00:00 2001 From: Jurien Hamaker Date: Mon, 12 Aug 2024 09:28:20 +0200 Subject: [PATCH] feat(koto, kusari & koto): Add description for people looking for tutorial command --- apps/kazu/src/commands/help.commands.ts | 6 +++++- apps/koto/src/commands/help.commands.ts | 10 +++++++--- apps/kusari/src/commands/help.commands.ts | 6 +++++- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/apps/kazu/src/commands/help.commands.ts b/apps/kazu/src/commands/help.commands.ts index 7c49e3f..decdfd7 100644 --- a/apps/kazu/src/commands/help.commands.ts +++ b/apps/kazu/src/commands/help.commands.ts @@ -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); diff --git a/apps/koto/src/commands/help.commands.ts b/apps/koto/src/commands/help.commands.ts index 9dfb421..91ce4a4 100644 --- a/apps/koto/src/commands/help.commands.ts +++ b/apps/koto/src/commands/help.commands.ts @@ -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 { @@ -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); diff --git a/apps/kusari/src/commands/help.commands.ts b/apps/kusari/src/commands/help.commands.ts index e8a0616..1762fb4 100644 --- a/apps/kusari/src/commands/help.commands.ts +++ b/apps/kusari/src/commands/help.commands.ts @@ -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);