diff options
author | Mattes D <github@xoft.cz> | 2014-03-30 16:58:42 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-30 16:58:42 +0200 |
commit | e474f40ac947aad8e208455a6fde8522c671eed9 (patch) | |
tree | 6b5678b1bcf0cb054668851145bb7ccf38038a4c /src/Blocks/BlockButton.h | |
parent | Merge pull request #838 from mc-server/lilypads (diff) | |
parent | Added in MetaMirrorXY and MetaMirrorYZ to cBlockSignHandler. (diff) | |
download | cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.gz cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.bz2 cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.lz cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.xz cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.zst cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.zip |
Diffstat (limited to 'src/Blocks/BlockButton.h')
-rw-r--r-- | src/Blocks/BlockButton.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Blocks/BlockButton.h b/src/Blocks/BlockButton.h index 740cbe3c4..4b2f6f618 100644 --- a/src/Blocks/BlockButton.h +++ b/src/Blocks/BlockButton.h @@ -2,17 +2,17 @@ #include "BlockHandler.h" #include "Chunk.h" -#include "MetaRotater.h" +#include "MetaRotator.h" class cBlockButtonHandler : - public cMetaRotater<cBlockHandler, 0x07, 0x04, 0x01, 0x03, 0x02, true> + public cMetaRotator<cBlockHandler, 0x07, 0x04, 0x01, 0x03, 0x02, true> { public: cBlockButtonHandler(BLOCKTYPE a_BlockType) - : cMetaRotater<cBlockHandler, 0x07, 0x04, 0x01, 0x03, 0x02, true>(a_BlockType) + : cMetaRotator<cBlockHandler, 0x07, 0x04, 0x01, 0x03, 0x02, true>(a_BlockType) { } |