enhancement(lint): Fix lint errors for src/commands/zeon_message.ts

Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
zeon-neon[bot] 2024-11-22 03:26:52 +00:00 committed by GitHub
parent d4bdd7dbf9
commit 79cdd373ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,14 +99,14 @@ export default class Message implements Command {
args.shift(); // get rid of it
// timer func
}
if(args[0] == "ping") {
if (args[0] == "ping") {
args.shift();
// ping func
await app.client.chat.postMessage({
channel: event.channel,
text: `:ping_pong: pong`,
thread_ts: event.thread_ts
})
thread_ts: event.thread_ts,
});
}
}
}