/* eslint-disable max-len */
module.exports = {
  name: 'validate',
  description: 'Validates hash',
  alias: [],
  usage: '<hash>',
  trusted: 1,
  execute: function(bot, username, usernameraw, sender, prefix, args) {
    if (args[0]===bot.hash) {
      bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: 'Valid hash', color: 'green'}));
    } else if (args[0]===bot.ownerHash) {
      bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: 'Valid OwnerHash', color: 'green'}));
    } else {
      bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: 'Invalid hash', color: 'red'}));
    }
  },
};