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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user