diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-09-27 20:19:28 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-09-27 20:19:28 +0200 |
commit | 7ce09a9113d693b85fdda13b3c04a8b8eb900153 (patch) | |
tree | 49c3c3742cff4c38a33bd5014dd9c57c0dcea71c /src/BlockEntities/EnderChestEntity.cpp | |
parent | Merge remote-tracking branch 'origin/master' into chestcarts (diff) | |
download | cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.gz cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.bz2 cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.lz cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.xz cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.zst cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.zip |
Diffstat (limited to 'src/BlockEntities/EnderChestEntity.cpp')
-rw-r--r-- | src/BlockEntities/EnderChestEntity.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/BlockEntities/EnderChestEntity.cpp b/src/BlockEntities/EnderChestEntity.cpp index b870f9e50..0654d97dd 100644 --- a/src/BlockEntities/EnderChestEntity.cpp +++ b/src/BlockEntities/EnderChestEntity.cpp @@ -11,7 +11,8 @@ cEnderChestEntity::cEnderChestEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World) : - super(E_BLOCK_ENDER_CHEST, a_BlockX, a_BlockY, a_BlockZ, a_World) + super(E_BLOCK_ENDER_CHEST, a_BlockX, a_BlockY, a_BlockZ, a_World), + cBlockEntityWindowOwner(this) { } |