We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stairs mod handles it with the following:
local baseburntime = minetest.get_craft_result({ method = "fuel", width = 1, items = {basenode} }).time if baseburntime > 0 then -- TODO: Properly handle burn times minetest.register_craft({ type = "fuel", recipe = "stairs:slab_" .. subname, burntime = math.floor(baseburntime * 0.5), }) end
this should be pretty straightforward to handle in recipes.lua.
recipes.lua
Moreblocks handles information about ratios much better than stairs so it'll be easier to handle all cases properly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Stairs mod handles it with the following:
this should be pretty straightforward to handle in
recipes.lua
.Moreblocks handles information about ratios much better than stairs so it'll be easier to handle all cases properly.
The text was updated successfully, but these errors were encountered: