diff options
Diffstat (limited to '')
-rw-r--r-- | src/BlockInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/BlockInfo.h b/src/BlockInfo.h index f35df90ae..8962f6328 100644 --- a/src/BlockInfo.h +++ b/src/BlockInfo.h @@ -25,6 +25,9 @@ public: inline static NIBBLETYPE GetLightValue (BLOCKTYPE a_Type) { return Get(a_Type).m_LightValue; } inline static NIBBLETYPE GetSpreadLightFalloff(BLOCKTYPE a_Type) { return Get(a_Type).m_SpreadLightFalloff; } inline static bool IsTransparent (BLOCKTYPE a_Type) { return Get(a_Type).m_Transparent; } + /** Warning: IsOneHitDig does not take into account enchantments / status effects / swim state / floating state + and therefore may be incorrect. Only use to check if hardness is 0 + If you want to check if a player would instantly mine a_Block use cPlayer::CanInstantlyMine(a_Block) */ 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 IsRainBlocker (BLOCKTYPE a_Type) { return Get(a_Type).m_IsRainBlocker; } |