Compilation fix
This commit is contained in:
parent
7ce09a9113
commit
a9243257e5
@ -36,8 +36,8 @@ public:
|
||||
cWorld * a_World // Optional world to assign to the entity
|
||||
) :
|
||||
super(a_BlockType, a_BlockX, a_BlockY, a_BlockZ, a_World),
|
||||
m_Contents(a_ItemGridWidth, a_ItemGridHeight),
|
||||
cBlockEntityWindowOwner(this)
|
||||
cBlockEntityWindowOwner(this),
|
||||
m_Contents(a_ItemGridWidth, a_ItemGridHeight)
|
||||
{
|
||||
m_Contents.AddListener(*this);
|
||||
}
|
||||
|
@ -1106,8 +1106,8 @@ void cRideableMinecart::OnRightClicked(cPlayer & a_Player)
|
||||
|
||||
cMinecartWithChest::cMinecartWithChest(double a_X, double a_Y, double a_Z) :
|
||||
super(mpChest, a_X, a_Y, a_Z),
|
||||
m_Contents(ContentsWidth, ContentsHeight),
|
||||
cEntityWindowOwner(this)
|
||||
cEntityWindowOwner(this),
|
||||
m_Contents(ContentsWidth, ContentsHeight)
|
||||
{
|
||||
m_Contents.AddListener(*this);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user