diff options
Diffstat (limited to 'server/src/emmy')
-rw-r--r-- | server/src/emmy/funcType.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/src/emmy/funcType.lua b/server/src/emmy/funcType.lua index 2acf8d28..f467f763 100644 --- a/server/src/emmy/funcType.lua +++ b/server/src/emmy/funcType.lua @@ -9,6 +9,10 @@ function mt:getType() return 'function' end +function mt:getName() + return 'function' +end + function mt:getSource() return listMgr.get(self.source) end |