1
0

Fixed cDropSpenserEntity bindings generating an extra var.

Caused by inadvertently exporting multiple-inheritance from a class that is not Lua-exported.
This commit is contained in:
madmaxoft
2013-10-23 11:17:16 +02:00
parent 730195c47e
commit 90bea6a914
3 changed files with 11 additions and 30 deletions

View File

@@ -29,10 +29,10 @@ class cServer;
// tolua_begin
class cDropSpenserEntity :
public cBlockEntityWithItems,
public cBlockEntityWindowOwner
class cDropSpenserEntity : // tolua_export
public cBlockEntityWindowOwner,
// tolua_begin
public cBlockEntityWithItems
{
typedef cBlockEntityWithItems super;