Differences From Artifact [222da491b8]:
- File metallurgy-hot.lua — part of check-in [9ef6cbcf31] at 2020-08-28 14:08:57 on branch trunk — add recipes, cookbooks, disassembly (to create recipes from items), attunement, farcasters, and portals; various edits for bug fixes and improvements (user: lexi, size: 13306) [annotate] [blame] [check-ins using]
To Artifact [c9beb59240]:
- File metallurgy-hot.lua — part of check-in [72eebac4bc] at 2020-09-26 18:49:51 on branch trunk — add writing stand for editing codexes; add scissors, ink, erasure fluid, pens; touch up codex UI; add many recipe notes; add craft divination type for crafttools; defuckulate fucktarded crafttool impl; enhance table library with missing features like lua's table.unpack; many bug fixes and enhancements; blood for the blood god (user: lexi, size: 13421) [annotate] [blame] [check-ins using]
412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
tiles = { 'sorcery_smelter_top_' .. tostring(kind.size) .. '.png'; 'sorcery_smelter_bottom.png'; 'sorcery_smelter_side.png'; 'sorcery_smelter_side.png'; 'sorcery_smelter_side.png'; 'sorcery_smelter_front' .. ((active and '_hot') or '') .. '.png'; }; }) end minetest.register_craft { recipe = recipe; output = id; } |
> > > > > |
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
tiles = { 'sorcery_smelter_top_' .. tostring(kind.size) .. '.png'; 'sorcery_smelter_bottom.png'; 'sorcery_smelter_side.png'; 'sorcery_smelter_side.png'; 'sorcery_smelter_side.png'; 'sorcery_smelter_front' .. ((active and '_hot') or '') .. '.png'; }; _sorcery = { recipe = { note = 'Smelt alloys from raw metals combined in various ratios'; }; }; }) end minetest.register_craft { recipe = recipe; output = id; } |