From 2d849b0a19af03913e564e2b6dbc36eecdd5ae0c Mon Sep 17 00:00:00 2001 From: kwolekr Date: Mon, 5 Jan 2015 02:42:27 -0500 Subject: Shorten ManualMapVoxelManipulator to MMVManip --- src/cavegen.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/cavegen.h') diff --git a/src/cavegen.h b/src/cavegen.h index a0268a645..7371df6fa 100644 --- a/src/cavegen.h +++ b/src/cavegen.h @@ -28,7 +28,7 @@ class MapgenV7; class CaveV6 { public: MapgenV6 *mg; - ManualMapVoxelManipulator *vm; + MMVManip *vm; INodeDefManager *ndef; s16 min_tunnel_diameter; @@ -44,22 +44,22 @@ public: s16 max_stone_y; v3s16 node_min; v3s16 node_max; - + v3f orp; // starting point, relative to caved space v3s16 of; // absolute coordinates of caved space v3s16 ar; // allowed route area s16 rs; // tunnel radius size v3f main_direction; - + s16 route_y_min; s16 route_y_max; - + PseudoRandom *ps; PseudoRandom *ps2; - + content_t c_water_source; content_t c_lava_source; - + int water_level; CaveV6() {} @@ -72,7 +72,7 @@ public: class CaveV7 { public: MapgenV7 *mg; - ManualMapVoxelManipulator *vm; + MMVManip *vm; INodeDefManager *ndef; NoiseParams *np_caveliquids; @@ -90,22 +90,22 @@ public: s16 max_stone_y; v3s16 node_min; v3s16 node_max; - + v3f orp; // starting point, relative to caved space v3s16 of; // absolute coordinates of caved space v3s16 ar; // allowed route area s16 rs; // tunnel radius size v3f main_direction; - + s16 route_y_min; s16 route_y_max; - + PseudoRandom *ps; - + content_t c_water_source; content_t c_lava_source; content_t c_ice; - + int water_level; CaveV7() {} -- cgit v1.2.3