Time Nick Message 16:34 OWNSyouAll Is the example here http://dev.minetest.net/minetest.get_craft_result bad? I can't get it to work just returns nil for the output variable 17:09 kaeza OWNSyouAll, seems to work here 17:09 kaeza print(dump(output)) --> {["time"] = 0, ["item"] = } 17:10 kaeza OWNSyouAll, can you paste your code? 17:16 OWNSyouAll kaeza, http://pastebin.com/eXr2CR70 17:17 kaeza OWNSyouAll, looks like your mod is being loaded before the recipe is registered 17:18 kaeza this does not happen if you query the recipe at runtime instead of load time 17:18 kaeza because at that point, all mods have been initialized and all recipes registered 17:19 kaeza in your case, simply depending on the mod that registers the recipe (add "default" to depends.txt) should allow you to test 17:20 kaeza but to answer your question, looks like there's a "gotcha" with the example on the wiki :) 17:22 OWNSyouAll Yep that depends.txt makes it return what it says on the wiki. 17:22 OWNSyouAll Thanks 17:22 kaeza no probs :)