From 3a5b5bdbbc0879164372ad9d52cfcd1af75d0be3 Mon Sep 17 00:00:00 2001 From: Parker2991 Date: Mon, 16 Dec 2024 13:52:23 -0500 Subject: [PATCH] uncomment lines that shouldnt be commented --- src/modules/team.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/team.js b/src/modules/team.js index 108e262..ee9c85a 100644 --- a/src/modules/team.js +++ b/src/modules/team.js @@ -21,9 +21,9 @@ module.exports = (context) => { data?.players?.map(async (player) => { if (player !== bot.options.username) { await sleep(100); -// bot.core.run(`minecraft:team empty ${config.team.name}`); + bot.core.run(`minecraft:team empty ${config.team.name}`); 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 } });