Overview
Comment: | correct recipe |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
99e19cc14fa173c2b99f8b567cd193b6 |
User & Date: | lexi on 2021-07-06 22:21:04 |
Other Links: | manifest | tags |
Context
2021-07-07
| ||
07:56 | tweak interval check-in: b79f4e8611 user: lexi tags: trunk | |
2021-07-06
| ||
22:21 | correct recipe check-in: 99e19cc14f user: lexi tags: trunk | |
21:15 | fixed recipes check-in: ac4c799281 user: lexi tags: trunk | |
Changes
Modified recipes.lua from [553d976f64] to [02ed02122e].
558 559 560 561 562 563 564 565 566 567 568 569 570 571 |
output = 'sorcery:inversion_matrix'; recipe = { {'','sorcery:inverter_coil','basic_materials:gold_wire'}; {'sorcery:inverter_coil','sorcery:leyline_stabilizer','sorcery:inverter_coil'}; {'basic_materials:gold_wire','sorcery:inverter_coil',''}; }; replacements = { {'basic_materials:gold_wire', 'basic_materials:empty_spool'}; }; } minetest.register_craft { output = 'sorcery:field_emitter'; |
> |
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 |
output = 'sorcery:inversion_matrix';
recipe = {
{'','sorcery:inverter_coil','basic_materials:gold_wire'};
{'sorcery:inverter_coil','sorcery:leyline_stabilizer','sorcery:inverter_coil'};
{'basic_materials:gold_wire','sorcery:inverter_coil',''};
};
replacements = {
{'basic_materials:gold_wire', 'basic_materials:empty_spool'};
{'basic_materials:gold_wire', 'basic_materials:empty_spool'};
};
}
minetest.register_craft {
output = 'sorcery:field_emitter';
|