diff --git a/src/bot/commands/slash/getstatement.ts b/src/bot/commands/slash/getstatement.ts index 2e79509..5a1c155 100644 --- a/src/bot/commands/slash/getstatement.ts +++ b/src/bot/commands/slash/getstatement.ts @@ -23,7 +23,10 @@ export const getstatement: CocoaSlash = { return; } - if (Problem.statement) await ctx.reply(Problem.statement); + if (Problem.statement) + await ctx.reply( + `Here is statement for ${Problem.title}\n${Problem.statement}` + ); else ctx.reply("Sorry, this problem doesn't have statement"); }, };