Compare commits

..

2 Commits

Author SHA1 Message Date
81c1ce886b Disable dynamic bot status 2026-01-26 09:23:22 +01:00
2cc35f659e Remote legacy cleanup jobs 2026-01-26 09:03:33 +01:00
2 changed files with 1 additions and 3 deletions

View File

@@ -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"] 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) { async tick(client, timer) {
return;
client.user.setActivity(timer.data.animeList[timer.data.statusIndex], { type: ActivityType.Watching }); client.user.setActivity(timer.data.animeList[timer.data.statusIndex], { type: ActivityType.Watching });
timer.data.statusIndex = (timer.data.statusIndex + 1) % timer.data.animeList.length timer.data.statusIndex = (timer.data.statusIndex + 1) % timer.data.animeList.length
}, },

View File

@@ -8,9 +8,6 @@ module.exports = {
const keepMessageEmoteId = '1214140438265724980'; const keepMessageEmoteId = '1214140438265724980';
const channelConfigs = [ const channelConfigs = [
{ channelId: '1214134516247957504', keepTimeMinutes: 2, keepAttachment: true }, //toho-test/mnzbot-test { channelId: '1214134516247957504', keepTimeMinutes: 2, keepAttachment: true }, //toho-test/mnzbot-test
{ channelId: '1111054421091155978', keepTimeMinutes: 2880 }, //cotr/Spam
{ channelId: '1170190197384814762', keepTimeMinutes: 2880, keepAttachment: true }, //cotr/Red
{ channelId: '1101703550070947920', keepTimeMinutes: 2880, keepAttachment: true }, //cotr/Memes
]; ];
function isMessageLocked(message) { function isMessageLocked(message) {
for (const [id, reaction] of message.reactions.cache) { for (const [id, reaction] of message.reactions.cache) {