Majrusz / MajruszsAccessories

Minecraft mod that adds new special accessories that make certain aspects of the game more enjoyable.
5 stars 9 forks source link

[1.20.1 Forge] Incompatibility with Fishing Overhaul mod #66

Open GreatSaltyLake opened 1 month ago

GreatSaltyLake commented 1 month ago

Cannot catch fishing related accessories with Fishing Overhaul installed. Tested by turning chance up to 100% with no change, upon removal of FO, could catch again.

This can unofficially be patched with LootJS

LootJS.modifiers((event) => {
    event.addLootTableModifier("minecraft:gameplay/fishing").addLoot(
        LootEntry.of("majruszsaccessories:angler_trophy").when((c) => c.randomChance(0.01)),
        LootEntry.of("majruszsaccessories:metal_lure").when((c) => c.randomChance(0.015)),
        LootEntry.of("majruszsaccessories:unbreakable_fishing_line").when((c) => c.randomChance(0.005))
    );
});