forked from VoxeLibre/VoxeLibre
9 lines
318 B
Lua
9 lines
318 B
Lua
local mod_path = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local mcl_skins_enabled = minetest.settings:get_bool("mcl_enable_skin_customization", true)
|
|
if mcl_skins_enabled then
|
|
dofile(mod_path .. "/edit_skin.lua")
|
|
dofile(mod_path .. "/simple_skins.lua")
|
|
dofile(mod_path .. "/mesh_hand.lua")
|
|
end
|