Open 2.2.2: Paving Stone of Travel crafting

Matryoshika

New Member
Jul 29, 2019
1
0
0
Version:
2.2.2

What is the bug:
The MineTweaker script for the Paving Stone of Travel is broken, as it requires a compund aspect (Iter) in the Arcane worktable, which can only use the primal aspects.
Imc31yL.png


Mod & Version:


Paste.feed-the-beast.com log:


Can it be repeated:
Is easily repeated.
Get research for the Paving Stone of Travelling.
Place ingredients into the arcane worktable.
Be unable to pay the aspects needed to craft it

Known Fix:
Locally, we went around this issue by editing the MineTweaker script
From:
Code:
# -- Paving Stone of Travel
mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:blockCosmeticSolid:2>);
mods.thaumcraft.Arcane.addShaped("PAVETRAVEL", <Thaumcraft:blockCosmeticSolid:2>*4, "aer 10, terra 10, iter 10", [[<Thaumcraft:blockCosmeticSolid:7>, <ore:runeAirB>, <Thaumcraft:blockCosmeticSolid:7>], [<minecraft:sugar>, null, <minecraft:sugar>], [<Thaumcraft:blockCosmeticSolid:7>, <ore:runeEarthB>, <Thaumcraft:blockCosmeticSolid:7>]]);
To:
Code:
# -- Paving Stone of Travel
mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:blockCosmeticSolid:2>);
mods.thaumcraft.Arcane.addShaped("PAVETRAVEL", <Thaumcraft:blockCosmeticSolid:2>*4, "aer 10, terra 10, ordo 10", [[<Thaumcraft:blockCosmeticSolid:7>, <ore:runeAirB>, <Thaumcraft:blockCosmeticSolid:7>], [<minecraft:sugar>, null, <minecraft:sugar>], [<Thaumcraft:blockCosmeticSolid:7>, <ore:runeEarthB>, <Thaumcraft:blockCosmeticSolid:7>]]);

(Edited Iter->Ordo)