diff options
author | madmaxoft <github@xoft.cz> | 2013-12-16 22:13:31 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-12-16 22:13:46 +0100 |
commit | 5d4e1725d43809baf667c51cba8fa8f1dec3220b (patch) | |
tree | 81437f3f00a3acc13927d54ac8f39ed7a4bc5dbf /MCServer/Plugins/APIDump/APIDesc.lua | |
parent | Fixed multiple inheritance in ToLua++. (diff) | |
download | cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.tar cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.tar.gz cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.tar.bz2 cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.tar.lz cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.tar.xz cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.tar.zst cuberite-5d4e1725d43809baf667c51cba8fa8f1dec3220b.zip |
Diffstat (limited to 'MCServer/Plugins/APIDump/APIDesc.lua')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 214b45a70..5bc4a5f39 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -2713,8 +2713,8 @@ end "os", "string", "table", - "g_TrackedPages", "g_Stats", + "g_TrackedPages", }, IgnoreFunctions = @@ -2747,6 +2747,15 @@ end "WriteStats", }, + IgnoreConstants = + { + "cChestEntity.__cBlockEntityWindowOwner__", + "cDropSpenserEntity.__cBlockEntityWindowOwner__", + "cFurnaceEntity.__cBlockEntityWindowOwner__", + "cHopperEntity.__cBlockEntityWindowOwner__", + "cLuaWindow.__cItemGrid__cListener__", + }, + IgnoreVariables = { "__.*__", -- tolua exports multiple inheritance this way |