Skip to content
Snippets Groups Projects
Commit 271b2bef authored by danielmeek32's avatar danielmeek32 Committed by paramat
Browse files

Player API: Apply model default textures when passing nil to 'set_textures'

parent 5d19fd69
No related branches found
No related tags found
No related merge requests found
......@@ -58,8 +58,10 @@ end
function player_api.set_textures(player, textures)
local name = player:get_player_name()
player_textures[name] = textures
player:set_properties({textures = textures,})
local model = models[player_model[name]]
local model_textures = model and model.textures or nil
player_textures[name] = textures or model_textures
player:set_properties({textures = textures or model_textures,})
end
function player_api.set_animation(player, anim_name, speed)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment