added sb alias

This commit is contained in:
Skylar Grant 2022-06-11 10:55:25 -04:00
parent 67f508f5e6
commit 3d64bf912c
1 changed files with 2 additions and 1 deletions

View File

@ -3,9 +3,10 @@ const config = require('../config.json');
module.exports = { module.exports = {
name: 'spongebob', name: 'spongebob',
alias: 'sb',
description: 'SpOnGeBoB-iFy AnYtHiNg AuToMaTiCaLly', description: 'SpOnGeBoB-iFy AnYtHiNg AuToMaTiCaLly',
usage: '<text to convert>.spongebob', usage: '<text to convert>.spongebob',
execute(message, commandData) { execute(message, commandData) {
message.reply(`@${message.author.username}: ${fn.spongebob(commandData)}`); message.reply(fn.spongebob(commandData));
} }
} }