464a0e1d89
- There are now 6 degrees of embers. Better fuel sources will make better embers. - Embers differ only in lifespan; each class lasts twice as long as the previous. Top-grade fuels may last 15 minutes or longer. - Embers decay stochastically. - Embers decay 16x as fast when smothered, but still go through the same lifecycle. Also: - Plain ash now reposes. There are no infinite fuel sources, nor are any specifically planned at this time.
13 lines
367 B
Lua
13 lines
367 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local dofile, minetest
|
|
= dofile, minetest
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
local modname = minetest.get_current_modname()
|
|
local path = minetest.get_modpath(modname)
|
|
|
|
dofile(path .. "/api.lua")
|
|
dofile(path .. "/node.lua")
|
|
dofile(path .. "/abm.lua")
|
|
|