mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-02 14:31:05 +01:00
8 lines
318 B
Lua
8 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
|