Added the 'links' command

This commit is contained in:
ION606
2022-02-17 22:18:51 -05:00
parent 05d4d5e997
commit b56025e4f4
3 changed files with 23 additions and 6 deletions
+3
View File
@@ -59,6 +59,9 @@ client.on('messageCreate', (message) => {
case 'profile': client.commands.get('profile').execute(message, args, Discord);
break;
case 'links': client.commands.get('links').execute(message, args, Discord);
break;
default: message.channel.send("'" + message.content + "' is not a command!");
}
})