memory update

This commit is contained in:
Luna
2026-03-03 20:00:47 +01:00
parent 7bff91faa9
commit 7fc2c683cd

View File

@@ -261,12 +261,13 @@ async function onReady() {
try {
await generateDailyThought();
const thought = await getDailyThought();
if (thought && client.user) {
console.log(`[bot] setting presence with thought: "${thought}"`);
await client.user.setPresence({
status: 'online',
activities: [{ name: thought, type: ActivityType.Playing }]
activities: [{ name: thought, type: ActivityType.Playing }],
});
console.log('[bot] presence set successfully');
} else {