1
0
mirror of https://github.com/minetest-mods/3d_armor.git synced 2025-01-15 04:20:25 +01:00

Fixed tabulation error.

This commit is contained in:
stujones11 2013-04-14 17:30:57 +01:00
parent f5e4d7af9f
commit 938fc519ef
2 changed files with 1 additions and 2 deletions
3d_armor
unified_skins

View File

@ -1,7 +1,6 @@
armor_api = { armor_api = {
player_hp = {}, player_hp = {},
fleshy_max = 20
} }
armor_api.get_armor_textures = function(self, player) armor_api.get_armor_textures = function(self, player)

View File

@ -33,7 +33,7 @@ uniskins.update_player_visuals = function(self, player)
texture = texture.."^[combine:64x64:0,0="..wielded_item_texture texture = texture.."^[combine:64x64:0,0="..wielded_item_texture
end end
end end
if minetest.get_modpath("3d_armor") then if minetest.get_modpath("3d_armor") then
local textures = armor_api:get_armor_textures(player) local textures = armor_api:get_armor_textures(player)
for _,v in ipairs({"head", "torso", "legs"}) do for _,v in ipairs({"head", "torso", "legs"}) do
if textures[v] then if textures[v] then