diff options
-rw-r--r-- | script-beta/parser/guide.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script-beta/parser/guide.lua b/script-beta/parser/guide.lua index 7a4f643c..0b435204 100644 --- a/script-beta/parser/guide.lua +++ b/script-beta/parser/guide.lua @@ -1988,8 +1988,8 @@ function m.searchSameFields(status, simple, mode) } end local i = 0 - local see = 0 - while see <= 999 do + local max = 0 + while max <= 9999 do i = i + 1 local data = queue[i] if not data then @@ -1997,7 +1997,7 @@ function m.searchSameFields(status, simple, mode) end if not status.lock[data.obj] then status.lock[data.obj] = true - see = see + 1 + max = max + 1 status.cache.count = status.cache.count + 1 m.checkSameSimple(status, simple, data, mode, status.results, queue) end |