Merge branch 'dev' into dev

Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>
This commit is contained in:
Redeix 2025-05-13 01:25:09 -05:00 committed by GitHub
commit a097ec6174
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 13 deletions

View file

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