From 7274b82ef4a19a87b794fd0642a34a18eb9a4b96 Mon Sep 17 00:00:00 2001 From: Perttu Ahola <celeron55@gmail.com> Date: Mon, 24 Jan 2011 13:42:13 +0200 Subject: [PATCH] commented out old water stuff --- src/voxel.cpp | 3 ++- src/voxel.h | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/voxel.cpp b/src/voxel.cpp index 7ba4e21c6..c045c949c 100644 --- a/src/voxel.cpp +++ b/src/voxel.cpp @@ -264,6 +264,7 @@ void VoxelManipulator::clearFlag(u8 flags) <<volume<<" nodes"<<std::endl;*/ } +#if 0 int VoxelManipulator::getWaterPressure(v3s16 p, s16 &highest_y, int recur_count) { m_flags[m_area.index(p)] |= VOXELFLAG_CHECKED2; @@ -894,6 +895,6 @@ void VoxelManipulator::flowWater( <<", updateareawaterpressure_time: "<<updateareawaterpressure_time <<std::endl;*/ } - +#endif //END diff --git a/src/voxel.h b/src/voxel.h index ed7fba089..c377dfe7a 100644 --- a/src/voxel.h +++ b/src/voxel.h @@ -396,7 +396,8 @@ class VoxelManipulator /*: public NodeContainer*/ */ void clearFlag(u8 flag); - + +#if 0 // VOXELFLAG_CHECKED2s must usually be cleared before calling // -1: dead end, 0-255: pressure // highest_y: Highest found water y is stored here. @@ -450,6 +451,7 @@ class VoxelManipulator /*: public NodeContainer*/ bool debugprint=false, u32 timelimit=50 ); +#endif /* Virtual functions -- GitLab