1
0
Fork 0

Haha yes GOLD

akairo
Loïc Bersier 5 years ago
parent 00ce6de8d9
commit a695d01800

@ -0,0 +1,20 @@
//THIS IS FOR APRIL FOOLS PLEASE DELETE ME AFTER
const { Listener } = require('discord-akairo');
class commandStartedListener extends Listener {
constructor() {
super('commandStarted', {
emitter: 'commandHandler',
event: 'commandStarted'
});
}
async exec(message) {
let count = Math.random() * 100;
if (count < 20) {
message.channel.send('To further utilize this command, please visit https://namejeff.xyz/gold');
}
}
}
module.exports = commandStartedListener;
Loading…
Cancel
Save