Skip to content

Commit

Permalink
fixed assertion in CleanHumanoids
Browse files Browse the repository at this point in the history
  • Loading branch information
jonlyles committed May 13, 2012
1 parent 7943541 commit 2a7b232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion follow.lua
Expand Up @@ -26,7 +26,7 @@ end
-- @param HumanoidsList, table containing
-- @return HumanoidsList, table (clean)
function CleanHumanoids( HumanoidsList )
assert( Humanoids.className == 'Humanoid' )
assert( type(HumanoidsList) == 'table' )
local HumanoidsClean = {}
for x = 1, #HumanoidsList do
if HumanoidsList[x] ~= script.Parent and HumanoidsList[x].Health ~= 0 then
Expand Down

0 comments on commit 2a7b232

Please sign in to comment.