- 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:
parent
ee55e713b1
commit
fba935817e
6 changed files with 175 additions and 50 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue