summaryrefslogtreecommitdiffstats
path: root/source/cFluidSimulator.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-02 13:43:30 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-02 13:43:30 +0100
commitf1aaea5022a7b9a3aec79fb21e04bcdb499a253f (patch)
treec251d836a3d45e2f6defeb6df92a0e37b861d997 /source/cFluidSimulator.h
parentcSocket API fix (possible invalid pointer) (diff)
downloadcuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.tar
cuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.tar.gz
cuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.tar.bz2
cuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.tar.lz
cuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.tar.xz
cuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.tar.zst
cuberite-f1aaea5022a7b9a3aec79fb21e04bcdb499a253f.zip
Diffstat (limited to '')
-rw-r--r--source/cFluidSimulator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cFluidSimulator.h b/source/cFluidSimulator.h
index af05da2dd..d4379623d 100644
--- a/source/cFluidSimulator.h
+++ b/source/cFluidSimulator.h
@@ -28,8 +28,8 @@ public:
//Gets the flowing direction. if a_Over is true also the block over the current block affects the direction (standard)
Direction GetFlowingDirection(int a_X, int a_Y, int a_Z, bool a_Over = true);
- virtual inline bool IsAllowedBlock( char a_BlockID ) = 0;
- virtual inline bool IsPassableForFluid( char a_BlockID );
+ virtual bool IsAllowedBlock( char a_BlockID ) = 0;
+ virtual bool IsPassableForFluid( char a_BlockID );
bool CanWashAway( char a_BlockID );
protected:
virtual void AddBlock( int a_X, int a_Y, int a_Z);