mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-09 04:34:32 +00:00
Merge branch 'fix_pairs' into 'master'
Fix Lua pairs and ipairs See merge request OpenMW/openmw!1864
This commit is contained in:
commit
7ee796b481
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ namespace LuaUtil
|
||||||
end
|
end
|
||||||
local function nextForArray(array, index)
|
local function nextForArray(array, index)
|
||||||
index = (index or 0) + 1
|
index = (index or 0) + 1
|
||||||
if index < #array then
|
if index <= #array then
|
||||||
return index, array[index]
|
return index, array[index]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue