minetest-mod-dinv/init.lua

19 lines
502 B
Lua
Raw Permalink Normal View History

2019-07-22 04:25:33 -07:00
-- Dinv init.lua
-- Copyright Duane Robertson (duane@duanerobertson.com), 2019
-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html)
2019-07-24 21:44:11 -07:00
dinv = {}
local mod = dinv
2019-07-22 04:25:33 -07:00
local mod_name = 'dinv'
mod.version = '20190720'
mod.path = minetest.get_modpath(minetest.get_current_modname())
mod.world = minetest.get_worldpath()
mod.dat = {}
2019-07-26 22:27:44 -07:00
mod.magic_ingredient = 'default:mese_crystal' -- Hmmm.... ?
2019-07-22 04:25:33 -07:00
2019-07-28 04:40:13 -07:00
dofile(mod.path .. '/inventory.lua')
2019-07-29 22:28:56 -07:00
dofile(mod.path .. '/recipes.lua')