Skip to content

Commit

Permalink
Localize player_attached
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockMen committed Aug 21, 2014
1 parent ef1f66a commit 11c04e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mods/default/player.lua
Expand Up @@ -162,14 +162,15 @@ end)

-- Localize for better performance.
local player_set_animation = default.player_set_animation
local player_attached = default.player_attached

-- Check each player and apply animations
minetest.register_globalstep(function(dtime)
for _, player in pairs(minetest.get_connected_players()) do
local name = player:get_player_name()
local model_name = player_model[name]
local model = model_name and models[model_name]
if model and not default.player_attached[name] then
if model and not player_attached[name] then
local controls = player:get_player_control()
local walking = false
local animation_speed_mod = model.animation_speed or 30
Expand Down

0 comments on commit 11c04e9

Please sign in to comment.