diff options
Diffstat (limited to 'source/cChestEntity.cpp')
-rw-r--r-- | source/cChestEntity.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/cChestEntity.cpp b/source/cChestEntity.cpp index f1a99b8c3..7961cee5b 100644 --- a/source/cChestEntity.cpp +++ b/source/cChestEntity.cpp @@ -34,6 +34,18 @@ cChestEntity::cChestEntity(int a_X, int a_Y, int a_Z, cWorld * a_World) +cChestEntity::cChestEntity(int a_X, int a_Y, int a_Z)
+ : cBlockEntity( E_BLOCK_CHEST, a_X, a_Y, a_Z)
+ , m_TopChest( false )
+ , m_JoinedChest( NULL )
+{
+ m_Content = new cItem[ c_ChestHeight*c_ChestWidth ];
+}
+
+
+
+
+
cChestEntity::~cChestEntity()
{
if( GetWindow() )
|