diff options
Diffstat (limited to '')
-rw-r--r-- | source/Defines.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Defines.h b/source/Defines.h index ba62a241e..6d86da825 100644 --- a/source/Defines.h +++ b/source/Defines.h @@ -1,6 +1,7 @@ #pragma once
#include "MemoryLeak.h"
+#include "BlockID.h"
//tolua_begin
// emissive blocks
@@ -45,6 +46,11 @@ inline bool IsValidItem( int a_ItemID ) //tolua_export return IsValidBlock( a_ItemID );
} //tolua_export
+inline bool IsBlockWater (char a_BlockID)
+{
+ return (a_BlockID == E_BLOCK_WATER || a_BlockID == E_BLOCK_STATIONARY_WATER);
+}
+
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 )
|