xJon / The-1.12.2-Pack

A Minecraft modpack
https://the-1122-pack.com
43 stars 7 forks source link

Seeds: Vishroom, Shimmerleaf and Cinderpearl via Infusion produces only 1 seeds instead of 8 #981

Open Lumpous opened 2 days ago

Lumpous commented 2 days ago

Was this bug reported before?

Please provide a link to your crash report or latest.log, if relevant

No response

If you have any, please provide a list of additional mods

No response

Please describe the issue you are experiencing

Current modpackversion: 1.6.4 Java on local PC:

Java on Server:

Issue can be reproduced in singleplayer as well as multiplayer on every try. Issue was already known in modpackversion 1.6.3


When trying to get additional seeds for Vishroom, Shimmerleaf and Cinderpearl using the infusion altar, the infusiuon produces only a single seed for all 3 plants and thus makes the whole infusion for the 3 types of seeds useless.

Issue seems to be known: https://github.com/daedalus4096/ThaumicWonders/issues/64 https://github.com/daedalus4096/ThaumicWonders/issues/70

As this issue appears to be ages old without any visible change until today - i'd suggest a temporary fix (as suggested in https://github.com/daedalus4096/ThaumicWonders/issues/64) using custom recipe:

mods.thaumcraft.Infusion.removeRecipe(thaumicwonders:vishroom_spore);
mods.thaumcraft.Infusion.registerRecipe("vishroom_spore", "TWOND_MYSTIC_GARDENING",thaumicwonders:vishroom_spore.withTag({Name:"handful"}), 5, [aspect:herba*10,aspect:ignis*10,aspect:praecantatio*5], minecraft:wheat_seeds, [thaumcraft:vishroom, thaumcraft:salis_mundus]);
recipes.addShapeless(thaumicwonders:vishroom_spore*8,[thaumicwonders:vishroom_spore.withTag({Name:"handful"})]);

mods.thaumcraft.Infusion.removeRecipe(thaumicwonders:shimmerleaf_seed);
mods.thaumcraft.Infusion.registerRecipe("shimmerleaf_seed", "TWOND_MYSTIC_GARDENING",thaumicwonders:shimmerleaf_seed.withTag({Name:"handful"}), 5, [aspect:herba*10,aspect:victus*10,aspect:auram*5], minecraft:wheat_seeds, [thaumcraft:shimmerleaf, thaumcraft:salis_mundus]);
recipes.addShapeless(thaumicwonders:shimmerleaf_seed*8,[thaumicwonders:shimmerleaf_seed.withTag({Name:"handful"})]);

mods.thaumcraft.Infusion.removeRecipe(thaumicwonders:cinderpearl_seed);
mods.thaumcraft.Infusion.registerRecipe("cinderpearl_seed", "TWOND_MYSTIC_GARDENING",thaumicwonders:cinderpearl_seed.withTag({Name:"handful"}), 5, [aspect:herba*10,aspect:victus*10,aspect:auram*5], minecraft:wheat_seeds, [thaumcraft:cinderpearl, thaumcraft:salis_mundus]);
recipes.addShapeless(thaumicwonders:cinderpearl_seed*8,[thaumicwonders:cinderpearl_seed.withTag({Name:"handful"})]);
xJon commented 1 day ago

Thank you for the report, and the suggested solution! Thankfully there's a fork in the works (https://github.com/Elite-Modding-Team/NewWonderology), so I might simply update to it as it gets more complete (it currently has some content removed).