mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-23 15:47:57 -05:00
ops
entity not block Real
This commit is contained in:
parent
3922aa5765
commit
12979437b5
1 changed files with 2 additions and 2 deletions
|
@ -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'}]));
|
||||
|
|
Loading…
Reference in a new issue