Rename mod: 3d_armor → mcl_armor

This commit is contained in:
Wuzzy 2020-02-18 15:44:54 +01:00
parent edab0be8f5
commit fb251db925
103 changed files with 185 additions and 182 deletions

View file

@ -1 +1 @@
3d_armor
mcl_armor

View file

@ -2,4 +2,3 @@ mcl_init
mcl_core
mcl_particles
mcl_death_messages
3d_armor?

View file

@ -5,6 +5,5 @@ mcl_hunger
mcl_death_messages
playerphysics
mcl_playerinfo
3d_armor?
mcl_weather
mcl_spawn

View file

@ -3,7 +3,6 @@ local S = minetest.get_translator("mcl_playerplus")
-- Internal player state
local mcl_playerplus_internal = {}
local armor_mod = minetest.get_modpath("3d_armor")
local def = {}
local time = 0

View file

@ -1,4 +1,4 @@
mcl_player
mcl_inventory?
intllib?
3d_armor?
mcl_armor?

View file

@ -105,7 +105,7 @@ mcl_skins.set_player_skin = function(player, skin_id)
mcl_skins.previews[playername] = preview
player:get_meta():set_string("mcl_skins:skin_id", tostring(skin_id))
mcl_skins.update_player_skin(player)
if minetest.get_modpath("3d_armor") then
if minetest.get_modpath("mcl_armor") then
armor.textures[playername].skin = skin_file
armor:update_player_visuals(player)
end