diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-08-27 13:23:54 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-08-27 13:23:54 +0800 |
commit | 057802df4049da0c71c47822b8baa7f99de1ba5e (patch) | |
tree | 571ba653133d7f4d082b0b0738662a1cacebdb29 /script-beta/vm/guideInterface.lua | |
parent | 8ab3e8e15ca366db726fc44c8bfacbb322f595aa (diff) | |
download | lua-language-server-057802df4049da0c71c47822b8baa7f99de1ba5e.zip |
暂存
Diffstat (limited to 'script-beta/vm/guideInterface.lua')
-rw-r--r-- | script-beta/vm/guideInterface.lua | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/script-beta/vm/guideInterface.lua b/script-beta/vm/guideInterface.lua index 0ecbd9a7..d7bb89e0 100644 --- a/script-beta/vm/guideInterface.lua +++ b/script-beta/vm/guideInterface.lua @@ -65,15 +65,11 @@ vm.interface = {} vm.interface.searchLevel = 0 function vm.interface.call(func, args, index) - local lib = vm.getLibrary(func) - if not lib then - return nil - end await.delay() - if lib.name == 'require' and index == 1 then + if func.special == 'require' and index == 1 then return m.require(args, index) end - if lib.name == 'dofile' then + if func.special == 'dofile' then return m.dofile(args, index) end end |