From 81c1ce886bd5894dce3c52c0082d0023d0ad7288 Mon Sep 17 00:00:00 2001 From: Minz Date: Mon, 26 Jan 2026 09:23:22 +0100 Subject: [PATCH] Disable dynamic bot status --- timers/botStatus.js | 1 + 1 file changed, 1 insertion(+) diff --git a/timers/botStatus.js b/timers/botStatus.js index 4d2afe0..bbbca99 100644 --- a/timers/botStatus.js +++ b/timers/botStatus.js @@ -9,6 +9,7 @@ module.exports = { animeList: ["K-On!", "Spice and Wolf", "Bakemonogatari", "Your Lie in April", "Noragami", "Puella Magi Madoka Magica", "Akame ga Kill!", "Steins;Gate", "\u3086\u308b\u30ad\u30e3\u30f3\u25b3"] }, async tick(client, timer) { + return; client.user.setActivity(timer.data.animeList[timer.data.statusIndex], { type: ActivityType.Watching }); timer.data.statusIndex = (timer.data.statusIndex + 1) % timer.data.animeList.length },