Skip to content

Commit a88c706

Browse files
authoredOct 5, 2023
fix(events): add missing discordjs events (#667)
1 parent 370755e commit a88c706

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/lib/types/Events.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ export const Events = {
3939
ClientReady: DJSEvents.ClientReady as const,
4040
Debug: DJSEvents.Debug as const,
4141
Error: DJSEvents.Error as const,
42+
GuildAuditLogEntryCreate: DJSEvents.GuildAuditLogEntryCreate as const,
43+
GuildAvailable: DJSEvents.GuildAvailable as const,
4244
GuildBanAdd: DJSEvents.GuildBanAdd as const,
4345
GuildBanRemove: DJSEvents.GuildBanRemove as const,
4446
GuildCreate: DJSEvents.GuildCreate as const,
@@ -48,7 +50,7 @@ export const Events = {
4850
GuildEmojiUpdate: DJSEvents.GuildEmojiUpdate as const,
4951
GuildIntegrationsUpdate: DJSEvents.GuildIntegrationsUpdate as const,
5052
GuildMemberAdd: DJSEvents.GuildMemberAdd as const,
51-
GuildMemberAvailable: DJSEvents.GuildMemberAdd as const,
53+
GuildMemberAvailable: DJSEvents.GuildMemberAvailable as const,
5254
GuildMemberRemove: DJSEvents.GuildMemberRemove as const,
5355
GuildMembersChunk: DJSEvents.GuildMembersChunk as const,
5456
GuildMemberUpdate: DJSEvents.GuildMemberUpdate as const,

0 commit comments

Comments
 (0)
Please sign in to comment.