From 9bc8287d4dc8d51853a53c13c9af3a95ba51e798 Mon Sep 17 00:00:00 2001 From: CodeTheDev Date: Fri, 5 Aug 2022 22:06:57 -0400 Subject: [PATCH] feat: bot presence --- backend/src/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backend/src/index.ts b/backend/src/index.ts index f5438991..ba85efec 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -350,6 +350,14 @@ connect().then(async () => { client.once("ready", () => { startUptimeCounter(); + // Airship start - Set bot presence. + client.user?.setPresence({ + activities: [{ + name: "the skies.", + type: "WATCHING" + }] + }); + // Airship end }); client.on(Constants.Events.RATE_LIMIT, (data) => {