diff --git a/commands/entity.js b/commands/entity.js index 204f8e6..49c16ae 100644 --- a/commands/entity.js +++ b/commands/entity.js @@ -8,8 +8,8 @@ module.exports = { trusted: 0, execute: function(bot, username, usernameraw, sender, prefix, args) { if (!args[0]) return; - const entity = mcData.blocksByName[args[0]]; - if (!entity) throw new SyntaxError('Invalid block'); + const entity = mcData.entitiesByName[args[0]]; + if (!entity) throw new SyntaxError('Invalid entity'); if (!args[1]) { bot.core.run('minecraft:execute unless entity @s[name= run ] run execute as @a at @r[\'limit\'=10] run summon minecraft:' + entity.name); bot.core.run('minecraft:tellraw @a ' + JSON.stringify(['', {text: 'Entity ', color: 'white'}, {text: `"${entity.displayName}" `, color: 'green'}, {text: 'spawning at everyone...', color: 'white'}]));