diff options
author | Mattes D <github@xoft.cz> | 2014-03-08 18:27:24 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-08 18:27:24 +0100 |
commit | 3a6499b192b4d0cf28d960a5f9ac09ee44265d5c (patch) | |
tree | 3fabece6b0dbac4c229453c81f1a57bb248ef9b8 /src/Blocks/BlockEnderchest.h | |
parent | Merge pull request #770 from xdot/master (diff) | |
parent | Moved returns (diff) | |
download | cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.gz cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.bz2 cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.lz cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.xz cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.zst cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.zip |
Diffstat (limited to 'src/Blocks/BlockEnderchest.h')
-rw-r--r-- | src/Blocks/BlockEnderchest.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Blocks/BlockEnderchest.h b/src/Blocks/BlockEnderchest.h index b4b0b995d..97cf484fb 100644 --- a/src/Blocks/BlockEnderchest.h +++ b/src/Blocks/BlockEnderchest.h @@ -2,17 +2,17 @@ #pragma once #include "BlockEntity.h" - +#include "MetaRotater.h" class cBlockEnderchestHandler : - public cBlockEntityHandler + public cMetaRotater<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04> { public: cBlockEnderchestHandler(BLOCKTYPE a_BlockType) - : cBlockEntityHandler(a_BlockType) + : cMetaRotater<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>(a_BlockType) { } |