diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-17 23:26:53 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-17 23:26:53 +0200 |
commit | 0f8c24e04d60aa1642a5fe7346941ccd7697977e (patch) | |
tree | 4b62903944643bfe406f503393bc26815c2548a7 /src/BlockInfo.h | |
parent | Fixed mob knockback (diff) | |
download | cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.tar cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.tar.gz cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.tar.bz2 cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.tar.lz cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.tar.xz cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.tar.zst cuberite-0f8c24e04d60aa1642a5fe7346941ccd7697977e.zip |
Diffstat (limited to 'src/BlockInfo.h')
-rw-r--r-- | src/BlockInfo.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/BlockInfo.h b/src/BlockInfo.h index d6d4e7430..e10ca9e68 100644 --- a/src/BlockInfo.h +++ b/src/BlockInfo.h @@ -39,9 +39,6 @@ public: /** Can this block hold snow atop? */ bool m_IsSnowable; - /** Does this block require a tool to drop? */ - bool m_RequiresSpecialTool; - /** Is this block solid (player cannot walk through)? */ bool m_IsSolid; @@ -61,7 +58,6 @@ public: inline static bool IsOneHitDig (BLOCKTYPE a_Type) { return Get(a_Type).m_OneHitDig; } inline static bool IsPistonBreakable (BLOCKTYPE a_Type) { return Get(a_Type).m_PistonBreakable; } inline static bool IsSnowable (BLOCKTYPE a_Type) { return Get(a_Type).m_IsSnowable; } - inline static bool RequiresSpecialTool (BLOCKTYPE a_Type) { return Get(a_Type).m_RequiresSpecialTool; } inline static bool IsSolid (BLOCKTYPE a_Type) { return Get(a_Type).m_IsSolid; } inline static bool FullyOccupiesVoxel (BLOCKTYPE a_Type) { return Get(a_Type).m_FullyOccupiesVoxel; } |