mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:40:18 +00:00
12 lines
336 B
JavaScript
12 lines
336 B
JavaScript
module.exports = {
|
|
name: 'ready',
|
|
async execute(client, Discord) {
|
|
const debugChannel = await client.channels.fetch(client.config.debug_channel);
|
|
client.debug_channel = debugChannel
|
|
if (client.config.devMode) {
|
|
console.log('dev mode');
|
|
}
|
|
console.log('- Activated -');
|
|
}
|
|
}
|