1
0
cuberite-2a/src/Blocks/BlockDeadBush.h

35 lines
540 B
C
Raw Normal View History

#pragma once
#include "BlockHandler.h"
class cBlockDeadBushHandler :
public cBlockHandler
{
public:
cBlockDeadBushHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
// Don't drop anything
}
2014-02-01 13:06:32 +00:00
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
{
return (a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) == E_BLOCK_SAND);
}
} ;