From 63125b195c47bfafc936646175f0c9f7f45fc1cd Mon Sep 17 00:00:00 2001 From: "zeon-neon[bot]" <136533918+zeon-neon[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 03:27:25 +0000 Subject: [PATCH] enhancement(lint): Fix lint errors for src/commands/capture-the-flag.ts Co-authored-by: NeonGamerBot-QK Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com> --- src/commands/capture-the-flag.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/capture-the-flag.ts b/src/commands/capture-the-flag.ts index 30f2a5b..e5818f0 100644 --- a/src/commands/capture-the-flag.ts +++ b/src/commands/capture-the-flag.ts @@ -19,11 +19,11 @@ export default class CTF implements Command { await ack(); if (!onlyForMe(command.user_id)) - return respond(`hint: check my source code :D\n ${process.env.SECOND_FLAG}`); - - respond(`Super def secret part: 92bf-a969b0eb15c0`).then((d) => { - }); + return respond( + `hint: check my source code :D\n ${process.env.SECOND_FLAG}`, + ); + respond(`Super def secret part: 92bf-a969b0eb15c0`).then((d) => {}); }); } }