uncomment lines that shouldnt be commented
This commit is contained in:
parent
122e8e7df0
commit
3a5b5bdbbc
1 changed files with 2 additions and 2 deletions
|
@ -21,9 +21,9 @@ module.exports = (context) => {
|
||||||
data?.players?.map(async (player) => {
|
data?.players?.map(async (player) => {
|
||||||
if (player !== bot.options.username) {
|
if (player !== bot.options.username) {
|
||||||
await sleep(100);
|
await sleep(100);
|
||||||
// bot.core.run(`minecraft:team empty ${config.team.name}`);
|
bot.core.run(`minecraft:team empty ${config.team.name}`);
|
||||||
await sleep(100);
|
await sleep(100);
|
||||||
// bot.core.run(`minecraft:team join ${config.team.name} @a[name="${bot.options.username}"]`);
|
bot.core.run(`minecraft:team join ${config.team.name} @a[name="${bot.options.username}"]`);
|
||||||
// this removes players who are not the bot
|
// this removes players who are not the bot
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue