diff options
author | Mattes D <github@xoft.cz> | 2013-08-20 21:29:16 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-08-20 21:29:16 +0200 |
commit | 61e17d23f7c45549473ea8250469d001ae49e6ad (patch) | |
tree | 31fe057313b002bf3f012c90419c83d527561741 /source/Blocks/BlockHandler.cpp | |
parent | Hotfix for #83. (diff) | |
parent | Juggled piston code to prioritise block action (diff) | |
download | cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.tar cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.tar.gz cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.tar.bz2 cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.tar.lz cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.tar.xz cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.tar.zst cuberite-61e17d23f7c45549473ea8250469d001ae49e6ad.zip |
Diffstat (limited to 'source/Blocks/BlockHandler.cpp')
-rw-r--r-- | source/Blocks/BlockHandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/Blocks/BlockHandler.cpp b/source/Blocks/BlockHandler.cpp index cbca5a4ec..6584eeed4 100644 --- a/source/Blocks/BlockHandler.cpp +++ b/source/Blocks/BlockHandler.cpp @@ -96,6 +96,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType) switch(a_BlockType) { // Block handlers, alphabetically sorted: + case E_BLOCK_ACTIVATOR_RAIL: return new cBlockRailHandler (a_BlockType); case E_BLOCK_BED: return new cBlockBedHandler (a_BlockType); case E_BLOCK_BIRCH_WOOD_STAIRS: return new cBlockStairsHandler (a_BlockType); case E_BLOCK_BREWING_STAND: return new cBlockBrewingStandHandler (a_BlockType); |