This commit is contained in:
lilyissillyyy
2026-02-25 18:01:31 -05:00
parent 1d52335360
commit 5378e40128
+1 -1
View File
@@ -129,7 +129,7 @@ client.on('clientReady', async () => {
// Interval to check for holidays and change the avatar if needed // Interval to check for holidays and change the avatar if needed
const isWearingHat = await client.redis.db.get('hat'); const isWearingHat = await client.redis.db.get('hat');
if (!isWearingHat) await client.redis.db.set('hat', false); if (!isWearingHat) await client.redis.db.set('hat', false);
client.avatarChanger.isWearingHat = isWearingHat === 'true' ? true : false; client.avatarChanger.isWearingHat = isWearingHat === 'true';
client.avatarChanger.setInterval(); client.avatarChanger.setInterval();
// Set up disabled commands // Set up disabled commands