From 18d7bc7fa1f2621eb593969b7bcccfeb4918c05f Mon Sep 17 00:00:00 2001 From: kwolekr Date: Sat, 6 Jul 2013 02:21:35 -0400 Subject: Mapgen V7: Huge rewrite, also tweaks to cavegen et al. --- src/biome.h | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'src/biome.h') diff --git a/src/biome.h b/src/biome.h index 535dc4989..cf3bd1b9f 100644 --- a/src/biome.h +++ b/src/biome.h @@ -45,14 +45,20 @@ public: std::string name; u32 flags; - std::string top_nodename; - std::string filler_nodename; + std::string nname_top; + std::string nname_filler; + std::string nname_water; + std::string nname_dust; + std::string nname_dust_water; content_t c_top; - s16 top_depth; - content_t c_filler; - s16 filler_height; + content_t c_water; + content_t c_dust; + content_t c_dust_water; + + s16 depth_top; + s16 depth_filler; s16 height_min; s16 height_max; -- cgit v1.2.3