nodbot/commands/joint.js

9 lines
228 B
JavaScript
Raw Normal View History

2021-07-06 21:37:29 +00:00
const { emoji } = require('../config.json');
module.exports = {
name: 'joint',
description: 'Pass the joint!',
execute(message, args) {
message.channel.send('It\'s dangerous to go alone... take this: ' + emoji.joint);
}
}