mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-07 02:20:34 +02:00
Add a final **print to log** at the end of `init.lua` to indicate themod was loaded successfully. This idea was derived from other mods which are specifically aimed at MT servers. This could be useful not only for player support (e.g. in the MT forum) but would be certainly useful for MT server admins using the CLI and reading their server logs.
31 lines
905 B
Lua
31 lines
905 B
Lua
--[[
|
|
=====================================================================
|
|
** More Blocks **
|
|
By Calinou, with the help of ShadowNinja and VanessaE.
|
|
|
|
Copyright © 2011-2020 Hugo Locurcio and contributors.
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
=====================================================================
|
|
--]]
|
|
|
|
moreblocks = {}
|
|
|
|
local modpath = minetest.get_modpath("moreblocks")
|
|
|
|
moreblocks.S = minetest.get_translator("moreblocks")
|
|
|
|
dofile(modpath .. "/config.lua")
|
|
dofile(modpath .. "/sounds.lua")
|
|
dofile(modpath .. "/circular_saw.lua")
|
|
dofile(modpath .. "/stairsplus/init.lua")
|
|
|
|
if minetest.get_modpath("default") then
|
|
dofile(modpath .. "/nodes.lua")
|
|
dofile(modpath .. "/redefinitions.lua")
|
|
dofile(modpath .. "/crafting.lua")
|
|
dofile(modpath .. "/aliases.lua")
|
|
end
|
|
|
|
-- print to log after mod was loaded successfully
|
|
print ("[MOD] MoreOres loaded")
|