Unable to copy Omni-Directional Connector group to another connector.
EDSenne opened this issue ยท 5 comments
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.
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]]);
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]);