chipmunkbot-archive/commands/validate.js

14 lines
372 B
JavaScript
Raw Permalink Normal View History

2022-11-12 20:32:35 -05:00
const name = 'validate'
const description = 'Tests trusted hash validation.'
const usages = ['<hash>']
const aliases = ['validate']
const enabled = true
const permLevel = 1
function execute (bot, cmd, player, args) {
bot.tellraw({ text: 'Valid hash', color: bot.colors.primary })
}
module.exports = { name, description, usages, aliases, enabled, execute, permLevel }