diff options
Diffstat (limited to '')
-rw-r--r-- | src/BlockInfo.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/BlockInfo.cpp b/src/BlockInfo.cpp index f5bbe97e3..4981b2efe 100644 --- a/src/BlockInfo.cpp +++ b/src/BlockInfo.cpp @@ -715,6 +715,17 @@ bool cBlockInfo::FullyOccupiesVoxel(const BLOCKTYPE Block) +bool cBlockInfo::IsClickedThrough(const BLOCKTYPE a_Block) +{ + // TODO: Nether Fire too. + + return a_Block == E_BLOCK_FIRE; +} + + + + + bool cBlockInfo::IsOneHitDig(const BLOCKTYPE Block) { #ifdef __clang__ |