- Revert mold changes from #987

This commit is contained in:
Redeix 2025-05-13 01:19:09 -05:00
parent 1b3e4c98db
commit a2ed5209c2
2 changed files with 13 additions and 13 deletions

View file

@ -18,7 +18,6 @@
- Added aluminium, stainless steel, and titanium millstones (Pyritie) - Added aluminium, stainless steel, and titanium millstones (Pyritie)
- Fixed fishing nets behavior. (Redeix) - Fixed fishing nets behavior. (Redeix)
- Added item to summon armor stands with arms. (Redeix) - Added item to summon armor stands with arms. (Redeix)
- Added recipes for emptying vessels and molds. (Redeix)
- Added recipes for extracting/ forming magma blocks. (Redeix) - Added recipes for extracting/ forming magma blocks. (Redeix)
- Nerfed steel support recipe output. (Redeix) - Nerfed steel support recipe output. (Redeix)

View file

@ -274,19 +274,20 @@ function registerTFGMoldRecipes(event) {
.EUt(GTValues.VA[GTValues.LV]) .EUt(GTValues.VA[GTValues.LV])
}) })
//craft mold to scrub nbt //TODO: Fix this code to respect full molds
const molds = Ingredient.of('#tfc:fired_molds').itemIds; // //craft mold to scrub nbt
// const molds = Ingredient.of('#tfc:fired_molds').itemIds;
molds.forEach(mold => { // molds.forEach(mold => {
event.shapeless(Item.of(mold), [mold]) // event.shapeless(Item.of(mold), [mold])
.id(`tfg:shapeless/mold_cleaning/${mold.replace(":", "/")}`); // .id(`tfg:shapeless/mold_cleaning/${mold.replace(":", "/")}`);
}); // });
//craft vessel to scrub nbt // //craft vessel to scrub nbt
const vessels = Ingredient.of('#tfc:fired_vessels').itemIds; // const vessels = Ingredient.of('#tfc:fired_vessels').itemIds;
vessels.forEach(vessel => { // vessels.forEach(vessel => {
event.shapeless(Item.of(vessel), [vessel]) // event.shapeless(Item.of(vessel), [vessel])
.id(`tfg:shapeless/vessel_cleaning/${vessel.replace(":", "/")}`); // .id(`tfg:shapeless/vessel_cleaning/${vessel.replace(":", "/")}`);
}); // });
} }