FTBTeam / FTB-Modpack-Issues

Any and all FTB Modpack issues are here! Please create a new issue, add to an existing one or maybe even suggest a feature in the discussions
https://feed-the-beast.com/modpack
39 stars 10 forks source link

Volumetric Flask is not compatible with AE2 Unofficial Extended Life #2517

Closed SilveryStar closed 3 months ago

SilveryStar commented 1 year ago

Modpack

FTB Interactions

Is your suggestion related to a problem? Please describe.

There are too many recipes containing fluids that require the use of Assembly machine and Assembly Line. But Volumetric Flask's Volumetric Interface does not support the use of the Pattern Expansion Card in AE2 Unofficial Extended Life, and it cannot be displayed in the interface terminal. I noticed that Volumetric Flask has not been updated for too long, is there any way to fix this

Mod suggestion

I recommend using AE2 Fluid Crafting Rework. After testing, this mod can better support the PAE2 Pattern Expansion Card and can be displayed in the Interface Terminal.

SilveryStar commented 1 year ago

Surprisingly, it supports fluids as a crafting table that returns results, and at the same time, the recipes containing fluids in JEI can also be directly filled into the template terminal.

Really looking forward to seeing this mod in future updates, I think I'll be writing some zs scripts myself for now to avoid continuing to use the Volumetric Interface, it's just unsatisfying

Kyykek commented 1 year ago

I ran into this issue as well and felt like looking into it. Anyway, by adding

ItemStack x = new ItemStack(Items.ITEM_PART_O_INTERFACE);
Upgrades.PATTERN_EXPANSION.registerItem(x, 3);
Upgrades.CRAFTING.registerItem(x, 1);

BlockStackSrc src = new BlockStackSrc(Items.BLOCK_O_INTERFACE, 0, ActivityState.Enabled);
AEBaseTile.registerTileItem(TileOInterface.class, src);
ItemStack y = src.stack(1);
Upgrades.PATTERN_EXPANSION.registerItem(y, 3);
Upgrades.CRAFTING.registerItem(y, 1);

to the end of the init method of Volumetric Flask, I was able to fix the issue (the Volumetric Interface is just made of subclasses of the ME interface, so I just had to register it as supporting the cards). This code can and should just be put into its own mod, but I didn't feel like dealing with forge mod dependencies when I threw this together. Here's my reddit post with a download link to the modified Volumetric Flask mod.

https://www.reddit.com/r/feedthebeast/comments/11j7ryv/fix_for_pattern_extension_cards_in_ae2_extended/

Gaz492 commented 3 months ago

Thank you for creating this issue/suggestion, however this modpack is now considered a legacy pack and is therefore no longer receiving any bug fix updates or mod updates. Any updates to this pack will only be released if there is a security issue.

We may have something up our sleeves, some may call it a remaster, keep an eye out on our social media platforms for more information.