diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-29 15:59:32 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-29 15:59:32 +0200 |
commit | 4df23d19b7be2f274974e3dfe91e716e6296f11c (patch) | |
tree | 144451e77d8363c4c4d15c4f634c30bdf0728131 /source/items/ItemSlab.h | |
parent | Extended the cFile interface with Printf() (diff) | |
download | cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.tar cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.tar.gz cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.tar.bz2 cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.tar.lz cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.tar.xz cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.tar.zst cuberite-4df23d19b7be2f274974e3dfe91e716e6296f11c.zip |
Diffstat (limited to 'source/items/ItemSlab.h')
-rw-r--r-- | source/items/ItemSlab.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/source/items/ItemSlab.h b/source/items/ItemSlab.h deleted file mode 100644 index 0bab038a2..000000000 --- a/source/items/ItemSlab.h +++ /dev/null @@ -1,45 +0,0 @@ -
-#pragma once
-
-#include "ItemHandler.h"
-#include "../World.h"
-
-
-
-
-
-class cItemSlabHandler : public cItemHandler
-{
-public:
- cItemSlabHandler(int a_ItemID)
- : cItemHandler(a_ItemID)
- {
-
- }
-
- virtual bool OnItemUse(cWorld * a_World, cPlayer * a_Player, cItem * a_Item, int a_X, int a_Y, int a_Z, char a_Dir) override
- {
- BLOCKTYPE Block;
- NIBBLETYPE Meta;
- a_World->GetBlockTypeMeta(a_X, a_Y, a_Z, Block, Meta);
-
- if (
- (a_Dir == 0 || a_Dir == 1) // Only when clicking on top or on bottom of the block
- && (Block == E_BLOCK_WOODEN_SLAB || Block == E_BLOCK_STONE_SLAB) // It is a slab
- && (Block == a_Item->m_ItemID) // Same slab
- && ((Meta & 0x7) == (a_Item->m_ItemHealth & 0x7))) // Same Texture
- {
- cItem Item(a_Item->m_ItemID, 1);
- if (a_Player->GetInventory().RemoveItem(Item))
- {
- a_World->SetBlock(a_X, a_Y, a_Z, Block - 1, Meta); //Block - 1 simple hack to save one if statement
- return true;
- }
- }
- return false;
- }
-} ;
-
-
-
-
|