Skip to content

Commit

Permalink
Update client.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
duckodas committed Oct 17, 2023
1 parent 16aa10f commit 0809c0a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/bot/src/events/ready/client.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { DiscordClient } from '../../bot.js';
import { EventInterface } from '../../components/typings/index.js';
import { Events, ActivityType, PresenceStatusData } from 'discord.js';
import { logger } from '../../components/handlers/exports.js';
import moment from 'moment-timezone';

const event: EventInterface = {
Expand All @@ -28,7 +27,7 @@ const event: EventInterface = {
if (currentMonth === 6 && currentDay === 7) {
presenceActivity = 'Happy Birthday GVO! 🎉🎂';
presenceStatus = 'idle';
} else if (currentMonth === 10 && currentDay === 31) {
} else if (currentMonth === 10 && currentDay >= 1 && currentDay <= 31) {
clientAvatar = guildAvatar = avatars.get('halloween');
presenceActivity = 'Spooky Halloween 🎃👻';
presenceStatus = 'idle';
Expand Down

0 comments on commit 0809c0a

Please sign in to comment.