Merge pull request #37 from asl97/patch-2

Fix player model animations
This commit is contained in:
KaadmY 2016-11-14 07:19:42 -08:00 committed by GitHub
commit 44b2c928bd
1 changed files with 6 additions and 4 deletions

View File

@ -135,10 +135,12 @@ minetest.register_globalstep(
local model = model_name and models[model_name]
local controls = player:get_player_control()
if controls.sneak then
player:set_nametag_attributes({color = {a = 30, r = 255, g = 255, b = 255}})
else
player:set_nametag_attributes({color = {a = 255, r = 255, g = 255, b = 255}})
if player_sneak[name] ~= controls.sneak then
if controls.sneak then
player:set_nametag_attributes({color = {a = 30, r = 255, g = 255, b = 255}})
else
player:set_nametag_attributes({color = {a = 255, r = 255, g = 255, b = 255}})
end
end
if model and not player_attached[name] then