Differences From
Artifact [b7e13e762b]:
- File
cookbook.lua
— part of check-in
[ea6e475e44]
at
2020-10-19 09:52:11
on branch trunk
— continue dev on celestial mechanics, add melding+division spells (resonance), refine itemclasses, add keypunch and punchcards, add paper pulp, add a shitload of visuals, add convenience scripts for working with the wiki, make the flamebolt spell actually useful instead of just a pretty lightshow, add essences, inferno crystal, and other goodies; iterate on wands, lots of shit i can't remember, various bugfixes
(user:
lexi,
size: 19858)
[annotate]
[blame]
[check-ins using]
94 94 for j,n in pairs(v) do
95 95 lst[#lst+1] = n
96 96 end
97 97 end
98 98 else
99 99 -- WHY IS THIS INTERFACE SO CLUMSY
100 100 local all,i = minetest.get_all_craft_recipes(out), nil
101 + if all == nil then return nil end
101 102 for _,r in pairs(all) do
102 103 if r.method == method and r.items and #r.items>0 then
103 104 i = r break
104 105 end
105 106 end
106 107 if i == nil or i.items == nil or #i.items == 0 then return nil end
107 108 w = (i.width == 0) and 3 or i.width