uncomment lines that shouldnt be commented

This commit is contained in:
Parker2991 2024-12-16 13:52:23 -05:00
parent 122e8e7df0
commit 3a5b5bdbbc

View file

@ -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
} }
}); });