Ajoute messages de chargement des mods dans le journal "action"

This commit is contained in:
sys4-fr 2018-12-25 17:41:16 +01:00
parent 9e69a6db73
commit 4eb9ffb088
12 changed files with 25 additions and 3 deletions

View File

@ -4,4 +4,6 @@ local modpath = minetest.get_modpath("building_blocks")
dofile(modpath.."/alias.lua")
dofile(modpath.."/node_stairs.lua")
dofile(modpath.."/others.lua")
dofile(modpath.."/recipes.lua")
dofile(modpath.."/recipes.lua")
minetest.log("action", "[building_blocks] loaded.")

View File

@ -177,3 +177,5 @@ minetest.register_craft({
{'technic:brass_ingot', 'technic:brass_ingot', 'technic:brass_ingot'},
}
})
minetest.log("action", "[chains] loaded.")

View File

@ -97,3 +97,5 @@ dofile(MODPATH.."/computers.lua")
dofile(MODPATH.."/miscitems.lua")
dofile(MODPATH.."/recipes.lua")
dofile(MODPATH.."/tetris.lua")
minetest.log("action", "[computer] loaded.")

View File

@ -214,3 +214,5 @@ minetest.register_alias("fake_fire:smokeless_ice_fire", "fake_fire:ice_fire")
minetest.register_alias("fake_fire:smokeless_chimney_top_stone", "fake_fire:chimney_top_stone")
minetest.register_alias("fake_fire:smokeless_chimney_top_sandstone", "fake_fire:chimney_top_sandstone")
minetest.register_alias("fake_fire:flint", "fake_fire:flint_and_steel")
minetest.log("action", "[fake_fire] loaded.")

View File

@ -119,6 +119,6 @@ dofile(modpath.."/wardrobe.lua")
dofile(modpath.."/crafts.lua")
if minetest.settings:get_bool("log_mod") then
if minetest.settings:get_bool("log_mods") then
minetest.log("action", "[HomeDecor] " .. S("Loaded!"))
end

View File

@ -89,3 +89,5 @@ if minetest.get_modpath("moreblocks") then
}
})
end
minetest.log("action", "[homedecor_3d_extra] loaded.")

View File

@ -5,3 +5,5 @@ homedecor_i18n = { }
local MP = minetest.get_modpath(minetest.get_current_modname())
homedecor_i18n.gettext, homedecor_i18n.ngettext = dofile(MP.."/intllib.lua")
minetest.log("action", "[homedecor_i18n] loaded.")

View File

@ -126,3 +126,5 @@ function inbox.get_inbox_insert_formspec(pos)
"listring[]"
return formspec
end
minetest.log("action", "[inbox] loaded.")

View File

@ -299,4 +299,6 @@ minetest.register_craft({
if minetest.get_modpath("mesecons_mvps") then
mesecon.register_mvps_stopper("itemframes:frame")
mesecon.register_mvps_stopper("itemframes:pedestal")
end
end
minetest.log("action", "[itemframes] loaded.")

View File

@ -153,3 +153,5 @@ minetest.register_lbm({
end
end
})
minetest.log("action", "[lavalamp] loaded.")

View File

@ -71,3 +71,5 @@ dofile(minetest.get_modpath("lrfurn").."/sofas.lua")
dofile(minetest.get_modpath("lrfurn").."/armchairs.lua")
dofile(minetest.get_modpath("lrfurn").."/coffeetable.lua")
dofile(minetest.get_modpath("lrfurn").."/endtable.lua")
minetest.log("action", "[lrfurn] loaded.")

View File

@ -186,3 +186,5 @@ minetest.register_craft({
{'group:stick', 'default:coal_lump', 'group:stick'},
}
})
minetest.log("action", "[plasmascreen] loaded.")