why is not work for some mobs spider work and cave_spider don't
event
.addEntityLootModifier("minecraft:spider")
//.randomChance(0.005)
.randomChance(1.0)
.addLoot(LootEntry.of("mysticalagriculture:spider_essence"))
});
LootJS.modifiers((event) => {
event
.addEntityLootModifier("minecraft:cave_spider")
//.randomChance(0.005)
.randomChance(1.0)
.addLoot(LootEntry.of("mysticalagriculture:spider_essence"))
});```