diff options
Diffstat (limited to 'server/src/core/hover/function.lua')
-rw-r--r-- | server/src/core/hover/function.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/src/core/hover/function.lua b/server/src/core/hover/function.lua index f8f7655e..9bb532ae 100644 --- a/server/src/core/hover/function.lua +++ b/server/src/core/hover/function.lua @@ -4,9 +4,6 @@ local function buildValueArgs(func, object, select) end local names = {} local values = {} - if func:getObject() then - names[#names+1] = 'self' - end if func.args then for _, arg in ipairs(func.args) do names[#names+1] = arg:getName() |