@@ -6,6 +6,7 @@ import messageCommandHandler from './handlers/messageCommands.js';
66import slashCommandHandler from './handlers/slashCommands.js' ;
77import modalHandler from './handlers/modals.js' ;
88import buttonHandler from './handlers/buttons.js' ;
9+ import selectMenuHandler from './handlers/selectMenus.js' ;
910import stringSelectMenuHandler from './handlers/stringSelectMenus.js' ;
1011import channelSelectMenuHandler from './handlers/channelSelectMenus.js' ;
1112import mentionableSelectMenuHandler from './handlers/mentionableSelectMenus.js' ;
@@ -37,6 +38,7 @@ client.messageCommandsAliases = new Discord.Collection();
3738client . slashCommands = new Discord . Collection ( ) ;
3839client . modals = new Discord . Collection ( ) ;
3940client . buttons = new Discord . Collection ( ) ;
41+ client . selectMenus = new Discord . Collection ( ) ;
4042client . stringSelectMenus = new Discord . Collection ( ) ;
4143client . channelSelectMenus = new Discord . Collection ( ) ;
4244client . mentionableSelectMenus = new Discord . Collection ( ) ;
@@ -49,6 +51,7 @@ await messageCommandHandler.loadMessageCommands(client);
4951await slashCommandHandler . loadSlashCommands ( client ) ;
5052await modalHandler . loadModals ( client ) ;
5153await buttonHandler . loadButtons ( client ) ;
54+ await selectMenuHandler . loadSelectMenus ( client ) ;
5255await stringSelectMenuHandler . loadStringSelectMenus ( client ) ;
5356await channelSelectMenuHandler . loadChannelSelectMenus ( client ) ;
5457await mentionableSelectMenuHandler . loadMentionableSelectMenus ( client ) ;
0 commit comments