10 lines
202 B
Lua
10 lines
202 B
Lua
|
-- Storagetest
|
||
|
|
||
|
storagetest = rawget(_G, "storagetest") or {}
|
||
|
|
||
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
||
|
storagetest.modpath = modpath
|
||
|
|
||
|
-- Nodes
|
||
|
dofile(modpath.."/nodes.lua")
|