lazerous42 / Ascension-of-the-Technomancer

A "kitchen sink" type Minecraft (1.7.10) modpack centered around Advent of Ascension and GregTech intended for expert players who find the usual assortment of modpacks to be completely devoid of challenge
5 stars 4 forks source link

RoC grinder generates 4 dustWood from 1 plankWood, GregTech converts 1 dustWood into 1 plankWood, producing a feedback exploit #23

Open Barhandar opened 7 years ago

Barhandar commented 7 years ago

https://github.com/ReikaKalseki/Reika_Mods_Issues/issues/1582 is related as I've discovered the issue through it.
https://github.com/ReikaKalseki/Reika_Mods_Issues/issues/1584 is the issue on Reika's tracker.

Packside solution is to remove dustWood/pulpWood OD entries from <RotaryCraft:rotarycraft_item_powders:3>, replacing them with dustSmallWood to maintain 1:1 convention, and changing the relevant dust-to-vanilla-plank RoC recipes (don't forget to write changes to ROTARYCRAFT_PackModifications.cfg).

According to Reika, next update to RoC will do this innately.

lazerous42 commented 7 years ago

I tried to fix this as documented above, but I'm having a bit of trouble. First off, I don't seem to be able to remove the plank recipes. Adjusted the oredict entry, and a new recipe appeared to turn 4 RoC sawdust into one GT wood pulp, so this seems fine. Then I go to remove the existing recipes, and I can only remove the Thermal Expansion recipes (compressed sawdust and sponges), the plank recipes stay no matter what I do (although I could just be missing something stupid, it happens)

recipes.removeShaped(<minecraft:planks>, [[dustRoCWood, dustRoCWood, null],
                                          [dustRoCWood, dustRoCWood, null],
                                          [null, null, null]]);

Also, GT seems to still insist on unifying RoC Sawdust to a full wood pulp even though when I look in the unifications.cfg file I see the record shown below

Rotarycraft {
    ...
    B:dustWood_false=false
    ...
}

To make the oredict change have any value, I need to be able to get rid of the plank recipes and prevent the improper unification. Any thoughts?