mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-06 02:20:24 +01:00
6b9b127804
- Turned all the 'print' calls at server's boot to 'minetest.log' in order to render it more clearly
13 lines
568 B
Lua
Executable File
13 lines
568 B
Lua
Executable File
-----------------------------------------------------------------------------------------------
|
|
local title = "Cave Stuff"
|
|
local version = "0.0.3"
|
|
local mname = "cavestuff"
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
dofile(minetest.get_modpath("cavestuff").."/nodes.lua")
|
|
dofile(minetest.get_modpath("cavestuff").."/mapgen.lua")
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
minetest.log("action", "[Mod] "..title.." ["..version.."] ["..mname.."] Loaded...")
|