diff options
Diffstat (limited to 'script/parser/guide.lua')
-rw-r--r-- | script/parser/guide.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/parser/guide.lua b/script/parser/guide.lua index 7fa2f3e2..4766257c 100644 --- a/script/parser/guide.lua +++ b/script/parser/guide.lua @@ -1697,10 +1697,10 @@ function m.searchSameMethod(ref, mark) end function m.searchSameFieldsCrossMethod(status, ref, start, queue) - local mark = status.cache.crossMethodMark + local mark = status.crossMethodMark if not mark then mark = {} - status.cache.crossMethodMark = mark + status.crossMethodMark = mark end local method = m.searchSameMethod(ref, mark) or m.searchSameMethodCrossSelf(ref, mark) |