Merge branch 'master' of https://github.com/mc-server/MCServer
This commit is contained in:
commit
db190a627c
@ -22,6 +22,8 @@ enum ENUM_PURE
|
|||||||
class cBlockRailHandler :
|
class cBlockRailHandler :
|
||||||
public cBlockHandler
|
public cBlockHandler
|
||||||
{
|
{
|
||||||
|
typedef cBlockHandler super;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
cBlockRailHandler(BLOCKTYPE a_BlockType)
|
cBlockRailHandler(BLOCKTYPE a_BlockType)
|
||||||
: cBlockHandler(a_BlockType)
|
: cBlockHandler(a_BlockType)
|
||||||
@ -51,6 +53,12 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
||||||
|
{
|
||||||
|
super::ConvertToPickups(a_Pickups, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
virtual bool CanBeAt(int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
|
virtual bool CanBeAt(int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
|
||||||
{
|
{
|
||||||
if (a_RelY <= 0)
|
if (a_RelY <= 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user