diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-29 15:41:47 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-29 15:41:47 +0200 |
commit | fe61687b97d55c92bb29bf6aae1288433229353d (patch) | |
tree | 3701e23efd1969ebc7a32b51bcabfc08fafa72a4 /source/blocks/BlockHandler.cpp | |
parent | AnvilStats: Overall statistics and mobspawner statistics. (diff) | |
download | cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.gz cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.bz2 cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.lz cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.xz cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.zst cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.zip |
Diffstat (limited to '')
-rw-r--r-- | source/blocks/BlockHandler.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blocks/BlockHandler.cpp b/source/blocks/BlockHandler.cpp index f45f40f9e..e6b384a23 100644 --- a/source/blocks/BlockHandler.cpp +++ b/source/blocks/BlockHandler.cpp @@ -41,6 +41,7 @@ #include "BlockIce.h"
#include "BlockOre.h"
#include "BlockNote.h"
+#include "BlockBed.h"
@@ -91,7 +92,7 @@ cBlockHandler *cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockID) return new cBlockRedstoneTorchHandler(a_BlockID);
case E_BLOCK_REDSTONE_WIRE:
return new cBlockRedstoneHandler(a_BlockID);
- case E_BLOCK_PISTON:
+ case E_BLOCK_PISTON:
case E_BLOCK_STICKY_PISTON:
return new cBlockPistonHandler(a_BlockID);
case E_BLOCK_REDSTONE_REPEATER_ON:
@@ -182,6 +183,8 @@ cBlockHandler *cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockID) return new cBlockMelonHandler(a_BlockID);
case E_BLOCK_NOTE_BLOCK:
return new cBlockNoteHandler(a_BlockID);
+ case E_BLOCK_BED:
+ return new cBlockBedHandler(a_BlockID);
default:
return new cBlockHandler(a_BlockID);
break;
|