diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-22 21:10:02 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-22 21:10:02 +0200 |
commit | b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5 (patch) | |
tree | 089b3be905aa030367925762c58bd30b08f5f3f6 /src/BlockInfo.h | |
parent | Updated prefabs to current Gallery content. (diff) | |
parent | Merge remote-tracking branch 'origin/master' into saplingsandleaves (diff) | |
download | cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.tar cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.tar.gz cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.tar.bz2 cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.tar.lz cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.tar.xz cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.tar.zst cuberite-b5e5586ab04b4cb7d630bc8a4999e23eba71a6e5.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 ed6fd4754..e6ce566c5 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; } |