Added timed messages

This commit is contained in:
2024-10-27 11:43:31 +01:00
parent 60644c2f78
commit ce1892eb82
5 changed files with 105 additions and 3 deletions

View File

@ -28,7 +28,7 @@ client.keywords = new Discord.Collection(); // all the keywords the bot will rea
client.dmCommands = new Discord.Collection(); // all the private commands
//Loading files, with the client variable like Command Handler, Event Handler, ...
["command", "dmCommand", "events", "keywords"].forEach(handler => {
["command", "dmCommand", "events", "keywords", "timedMessages"].forEach(handler => {
require(`./handlers/${handler}`)(client);
});