feat: notify when staff are offline (closes #304)

This commit is contained in:
Isaac
2023-03-23 21:48:46 +00:00
parent ee90fed50a
commit 59dec28804
5 changed files with 51 additions and 5 deletions

View File

@@ -23,10 +23,11 @@ module.exports = class Client extends FrameworkClient {
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildPresences,
],
partials: [
Partials.Message,
Partials.Channel,
Partials.Message,
Partials.Reaction,
],
});
@@ -66,4 +67,4 @@ module.exports = class Client extends FrameworkClient {
await this.prisma.$disconnect();
return super.destroy();
}
};
};