Skip to content

Instantly share code, notes, and snippets.

@BlockMen
Created May 24, 2013 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BlockMen/5646006 to your computer and use it in GitHub Desktop.
Save BlockMen/5646006 to your computer and use it in GitHub Desktop.
stoneage fix
local torch = "default:torch"
if (minetest.get_modpath("stoneage")) ~= nil then
torch = "stoneage:torch_unlit"
end
minetest.register_craft({
output = torch .. " 4",
recipe = {
{'group:coal'},
{'default:stick'},
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment