- Added handcart recipe

- Allowed more blocks to be used as oven, forge, and bloomery insulation
- Fixed lang error with treated wood planks recipe
- Forgot to add fishing net functionality before
This commit is contained in:
Redeix 2025-04-26 02:35:02 -05:00
parent ee55e713b1
commit fba935817e
6 changed files with 175 additions and 50 deletions

View file

@ -30,6 +30,14 @@ const registerFirmaLifeBlockTags = (event) => {
// Удаление тегов у руд
event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/")
//Allows any block with the word "brick" in its id to be used as oven insulation.
//Add blacklisted words to the const with | between.
const brick_blacklist = ('drying|additionalplacements');
event.add('firmalife:oven_insulation', `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`);
event.add('firmalife:oven_insulation', 'firmalife:stovetop_pot');
event.add('firmalife:oven_insulation', 'firmalife:vat');
}
const registerFirmaLifeFluidTags = (event) => {