mirror of
https://bitbucket.org/minetest_gamers/x_enchanting.git
synced 2025-04-21 17:50:21 +02:00
29 lines
815 B
Lua
29 lines
815 B
Lua
-- X Enchanting
|
|
-- by SaKeL
|
|
|
|
local path = minetest.get_modpath('x_enchanting')
|
|
local mod_start_time = minetest.get_us_time()
|
|
|
|
dofile(path .. '/api.lua')
|
|
dofile(path .. '/table.lua')
|
|
|
|
minetest.register_on_mods_loaded(function()
|
|
for name, tool_def in pairs(minetest.registered_tools) do
|
|
if XEnchanting:has_tool_group(name) then
|
|
XEnchanting:set_tool_enchantability(tool_def)
|
|
end
|
|
end
|
|
end)
|
|
|
|
minetest.register_on_joinplayer(function(player, last_login)
|
|
XEnchanting.form_context[player:get_player_name()] = nil
|
|
end)
|
|
|
|
minetest.register_on_leaveplayer(function(player, timed_out)
|
|
XEnchanting.form_context[player:get_player_name()] = nil
|
|
end)
|
|
|
|
local mod_end_time = (minetest.get_us_time() - mod_start_time) / 1000000
|
|
|
|
print('[Mod] x_enchanting loaded.. [' .. mod_end_time .. 's]')
|