diff options
author | madmaxoft <github@xoft.cz> | 2014-03-05 18:28:42 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-05 18:28:42 +0100 |
commit | 86615428cd3d967c8bd73628fe8946405060d24c (patch) | |
tree | 31c156baedaa969ffaa7bd319d8d55b90686e950 | |
parent | Fixed some gcc warnings in Defines.h. (diff) | |
download | cuberite-86615428cd3d967c8bd73628fe8946405060d24c.tar cuberite-86615428cd3d967c8bd73628fe8946405060d24c.tar.gz cuberite-86615428cd3d967c8bd73628fe8946405060d24c.tar.bz2 cuberite-86615428cd3d967c8bd73628fe8946405060d24c.tar.lz cuberite-86615428cd3d967c8bd73628fe8946405060d24c.tar.xz cuberite-86615428cd3d967c8bd73628fe8946405060d24c.tar.zst cuberite-86615428cd3d967c8bd73628fe8946405060d24c.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 0b6f33b37..1d30ea72d 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -2701,16 +2701,16 @@ end IgnoreClasses = { - "coroutine", - "debug", - "io", - "math", - "package", - "os", - "string", - "table", - "g_Stats", - "g_TrackedPages", + "^coroutine$", + "^debug$", + "^io$", + "^math$", + "^package$", + "^os$", + "^string$", + "^table$", + "^g_Stats$", + "^g_TrackedPages$", }, IgnoreFunctions = |