diff options
Diffstat (limited to 'source/Defines.h')
-rw-r--r-- | source/Defines.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/Defines.h b/source/Defines.h index 6d86da825..838eb1340 100644 --- a/source/Defines.h +++ b/source/Defines.h @@ -46,11 +46,16 @@ inline bool IsValidItem( int a_ItemID ) //tolua_export return IsValidBlock( a_ItemID );
} //tolua_export
-inline bool IsBlockWater (char a_BlockID)
+inline bool IsBlockWater(char a_BlockID)
{
return (a_BlockID == E_BLOCK_WATER || a_BlockID == E_BLOCK_STATIONARY_WATER);
}
+inline bool IsBlockLava(char a_BlockID)
+{
+ return (a_BlockID == E_BLOCK_LAVA || a_BlockID == E_BLOCK_STATIONARY_LAVA);
+}
+
inline void AddDirection( int & a_X, char & a_Y, int & a_Z, char a_Direction, bool a_bInverse = false ) //tolua_export
{//tolua_export
if( !a_bInverse )
|