Enigmatica 2: Expert - E2E

Enigmatica 2: Expert - E2E

2M Downloads

Unable to copy Omni-Directional Connector group to another connector.

EDSenne opened this issue ยท 5 comments

commented

Modpack version
Version 1.82a

Issue
The recipe to link 2 omni-directional connectors together to the same group is missing. If you accidentally reset one, it is currently impossible to ever have it be linked with any other connector again, short of crafting 3 new ones out of it with the shaped recipe.

IDRecipes

IngameIDRecipes

UnableToCopy

I have a hunch this was caused by replacing the recipes to add the Ender Chest and an additional Logic Director to them:

# Omni directional
var connector = <integrateddynamics:part_connector_omni_directional_item>;
var part = <integrateddynamics:logic_director>;
var mono = <integrateddynamics:part_connector_mono_directional_item>;
recipes.remove(connector);

recipes.addShaped("part_connector_omni_directional_item_11", connector * 3, [
	[part, <enderstorage:ender_storage>, part], 
	[mono, connector, mono],
	[null, part, null]]);

recipes.addShaped("part_connector_omni_directional_item", connector * 2, [
	[part, <enderstorage:ender_storage>, part], 
	[mono, <integrateddynamics:cable>, mono], 
	[null, part, null]]);
commented

Adding this line to the bottom of scripts/IntegratedDynamics.zs adds the recipe back in.
recipes.addShapeless("part_connector_omni_directional_item_12", connector * 2, [connector, connector]);

commented

Have you verified whether that recipe copies data? :)

commented

Yep, I used it earlier today and the group converted as intended

commented

Awesome, thanks!

commented

Thanks for the report, should be a fairly straight forward fix :)