You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem encountered using latest version of modpack - 1.3.9
The vanilla crafting table is missing the forge:workbench tag and as such it can't be used for some crafting recipes. One example is the molecular assembler from AE2. It contains the forge:workbenches tag, but that is not enough to make it suitable for some recipes (as the one mentioned beforehand).
UPDATE:
I have found a possible fix for this. I am not sure if it's the best way of fixing this but I will explain it here just in case someone has the same problem.
Go to where your instance is installed.
Go to kubejs\server_scripts\NTC\base\modrecipes\applied_energistics2.
Open the applied_energistics2.js file in your preferred text editor.
Find the line that contains modifyShaped(e, 'appliedenergistics2:molecular_assembler'...(line 90 at the time of writing)
Now find the line that contains #forge:workbench (line 95 at the time of writing) and change that to #forge:workbenches
OPTIONAL: You can also change any other occurrence of the #forge:workbench tag while you are in this file to avoid future problems.
The text was updated successfully, but these errors were encountered:
Problem encountered using latest version of modpack - 1.3.9
The vanilla crafting table is missing the
forge:workbench
tag and as such it can't be used for some crafting recipes. One example is the molecular assembler from AE2. It contains theforge:workbenches
tag, but that is not enough to make it suitable for some recipes (as the one mentioned beforehand).UPDATE:
I have found a possible fix for this. I am not sure if it's the best way of fixing this but I will explain it here just in case someone has the same problem.
kubejs\server_scripts\NTC\base\modrecipes\applied_energistics2
.applied_energistics2.js
file in your preferred text editor.modifyShaped(e, 'appliedenergistics2:molecular_assembler'...
(line 90 at the time of writing)#forge:workbench
(line 95 at the time of writing) and change that to#forge:workbenches
#forge:workbench
tag while you are in this file to avoid future problems.The text was updated successfully, but these errors were encountered: