summaryrefslogtreecommitdiff
path: root/script-beta/core/hover/table.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script-beta/core/hover/table.lua')
-rw-r--r--script-beta/core/hover/table.lua8
1 files changed, 1 insertions, 7 deletions
diff --git a/script-beta/core/hover/table.lua b/script-beta/core/hover/table.lua
index 899306dc..ff4012bb 100644
--- a/script-beta/core/hover/table.lua
+++ b/script-beta/core/hover/table.lua
@@ -228,13 +228,7 @@ return function (source)
local clock = os.clock()
local timeUp
local mark = {}
- local fields
- if source.special == '_G'
- and config.config.intelliSense.fastGlobal then
- fields = vm.getGlobals('*', 'fast')
- else
- fields = vm.getFields(source, 'deep')
- end
+ local fields = vm.getFields(source, 'deep')
for _, src in ipairs(fields) do
local key = getKey(src)
if not key then