I removed the clubs from "Basic Weapons" from the loot tables via this script, supposedly, but in game ive encountered vanilla and modded structures still having the item. ```LootJS.lootTables(event => {
const itemsToRemove = [
"basicweapons:wooden_club",
"basicweapons:stone_club",
"basicweapons:iron_club",
"basicweapons:golden_club",
"basicweapons:diamond_club",
"basicweapons:netherite_club",
"endrem:nether_eye",
"endrem:undead_eye",
"endrem:witch_eye",
"endrem:wither_eye",
"endrem:undead_soul",
"endrem:witch_pupil",
];
event.modifyLootTables("chest").forEach(table => {
itemsToRemove.forEach(item => {
table.removeItem(item);
});
});
});``` this is my script im using so far to remove the items from the loot tables, i have not tested the end remastered eyes if they are found in chests but if the clubs aren't working, im assuming those wont as well.
Please ping me in any response via @mellow lintel or just ping in the reply