diff options
author | Alexander Harkness <me@bearbin.net> | 2014-09-27 15:17:13 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2014-09-27 15:17:13 +0200 |
commit | 4df56fde88b30d9a3f58b7efe8b281a0ca36f42b (patch) | |
tree | c7926219388c6ebe41effe4046036c797feb4451 /src/Blocks/BlockDoor.h | |
parent | Removed polarSSL makefile. Fixes #591. (diff) | |
parent | Added default value to switch and spruce gate to fence gate handler (diff) | |
download | cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.tar cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.tar.gz cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.tar.bz2 cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.tar.lz cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.tar.xz cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.tar.zst cuberite-4df56fde88b30d9a3f58b7efe8b281a0ca36f42b.zip |
Diffstat (limited to 'src/Blocks/BlockDoor.h')
-rw-r--r-- | src/Blocks/BlockDoor.h | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/src/Blocks/BlockDoor.h b/src/Blocks/BlockDoor.h index b2f9e4dcd..0ff8bcfc8 100644 --- a/src/Blocks/BlockDoor.h +++ b/src/Blocks/BlockDoor.h @@ -55,7 +55,49 @@ public: virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override { - a_Pickups.push_back(cItem((m_BlockType == E_BLOCK_WOODEN_DOOR) ? E_ITEM_WOODEN_DOOR : E_ITEM_IRON_DOOR, 1, 0)); + switch (m_BlockType) + { + case E_BLOCK_WOODEN_DOOR: + { + a_Pickups.Add(E_ITEM_WOODEN_DOOR); + break; + } + case E_BLOCK_ACACIA_DOOR: + { + a_Pickups.Add(E_ITEM_ACACIA_DOOR); + break; + } + case E_BLOCK_BIRCH_DOOR: + { + a_Pickups.Add(E_ITEM_BIRCH_DOOR); + break; + } + case E_BLOCK_DARK_OAK_DOOR: + { + a_Pickups.Add(E_ITEM_DARK_OAK_DOOR); + break; + } + case E_BLOCK_JUNGLE_DOOR: + { + a_Pickups.Add(E_ITEM_JUNGLE_DOOR); + break; + } + case E_BLOCK_SPRUCE_DOOR: + { + a_Pickups.Add(E_ITEM_SPRUCE_DOOR); + break; + } + case E_BLOCK_IRON_DOOR: + { + a_Pickups.Add(E_ITEM_IRON_DOOR); + break; + } + default: + { + ASSERT(!"Unhandled door type!"); + break; + } + } } |