Skip to content

Commit

Permalink
Fixed path:iter()
Browse files Browse the repository at this point in the history
Updated 1.8.0 rockspec
  • Loading branch information
Yonaba committed Jan 30, 2013
1 parent 422d40c commit 1fc0fdc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion jumper/core/path.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if (...) then
return function()
if self[i] then
i = i+1
return self[i],i-1
return self[i-1],i-1
end
end
end
Expand Down
1 change: 0 additions & 1 deletion rockspecs/jumper-1.8.0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ build = {
["jumper.grid"] = "jumper/grid.lua",
["jumper.pathfinder"] = "jumper/pathfinder.lua",
["jumper.core.bheap"] = "jumper/core/bheap.lua",
["jumper.core.grid"] = "jumper/core/grid.lua",
["jumper.core.heuristics"] = "jumper/core/heuristics.lua",
["jumper.core.node"] = "jumper/core/node.lua",
["jumper.core.path"] = "jumper/core/path.lua",
Expand Down

0 comments on commit 1fc0fdc

Please sign in to comment.