Thermal Expansion compatibility improvement - Alchemical Retort augment
mathwiz617 opened this issue ยท 2 comments
Issue Description:
Similar to issue #631, Thermal Expansion's Refinery has specializations that changes what recipes are available. This only allows the recipes registered under this augment to be done, and you need the augment to do these recipes. The one I'm looking at is the Alchemical Retort, with enhances liquid potions
I used these lines:
var healingPotionThree = liquid:potion.withTag({Potion: "cofhcore:healing3"});
mods.thermalexpansion.Refinery.removeRecipe(healingPotionThree);
What happens:
ERROR: No Refinery recipe exists for: net.minecraftforge.fluids.FluidStack@5db7526
What you expected to happen:
I expected this recipe:
mod.thermalexpansion.Refinery.addRecipe(liquid:potion.withTag({Potion: "cofhcore:healing4"}) * 150, null, liquid:potion.withTag({Potion: "cofhcore:healing3"}) * 200, 2500);
would be removed.
I guess ModTweaker will need to be updated to account for how the Alchemical Retort augment works.
Script used (Please Pastebin or gist your script, posting an unpasted or ungist'd script will automatically close this issue):
Minetweaker.log file (Please Pastebin or gist your file, posting an unpasted or ungist'd file will automatically close this issue):
Affected Versions (Do not use "latest"):
- Minecraft:.12.2
- Forge: 14.23.4.2747
- Crafttweaker: CraftTweaker2-1.12-4.1.9
- ModTweaker: 4.0.13
- MTLib: 3.0.5
Your most recent log file where the issue was present:
I've opened a pull request for aeb1e9b which should hopefully resolve this.