This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
melonybot/commands/headpat.js

16 lines
326 B
JavaScript

const { Command } = require('discord-akairo');
module.exports = class extends Command {
constructor() {
super('headpat', {
aliases: ['headpat','hp'],
description: "Headpats.",
typing: true
});
}
exec(message) {
return message.reply('*headpats*');
}
}