2022-08-29 18:09:00 +00:00
|
|
|
local mod_path = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
local mcl_skins_enabled = minetest.settings:get_bool("mcl_enable_skin_customization", true)
|
2022-09-06 17:51:43 +00:00
|
|
|
if mcl_skins_enabled then
|
|
|
|
dofile(mod_path .. "/edit_skin.lua")
|
|
|
|
dofile(mod_path .. "/simple_skins.lua")
|
|
|
|
dofile(mod_path .. "/mesh_hand.lua")
|
|
|
|
end
|