summaryrefslogtreecommitdiff
path: root/script/vm/compiler.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/vm/compiler.lua')
-rw-r--r--script/vm/compiler.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/script/vm/compiler.lua b/script/vm/compiler.lua
index 1efe8abb..b0694a4b 100644
--- a/script/vm/compiler.lua
+++ b/script/vm/compiler.lua
@@ -375,7 +375,11 @@ function vm.getClassFields(suri, object, key, ref, pushResult)
if not searchedFields[fieldKey]
and guide.isSet(field)
and field.value then
- if guide.isLiteral(field.value) then
+ if vm.getLocalID(field)
+ and vm.getLocalID(field) == vm.getLocalID(field.value) then
+ elseif src._globalNode
+ and src._globalNode == field.value._globalNode then
+ else
hasFounded[fieldKey] = true
end
pushResult(field, true)