diff options
Diffstat (limited to '')
-rw-r--r-- | source/cChestEntity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cChestEntity.cpp b/source/cChestEntity.cpp index f1a99b8c3..e1976836b 100644 --- a/source/cChestEntity.cpp +++ b/source/cChestEntity.cpp @@ -27,7 +27,7 @@ cChestEntity::cChestEntity(int a_X, int a_Y, int a_Z, cWorld * a_World) , m_TopChest( false )
, m_JoinedChest( NULL )
{
- m_Content = new cItem[ c_ChestHeight*c_ChestWidth ];
+ m_Content = new cItem[ c_ChestHeight * c_ChestWidth ];
}
|