diff options
Diffstat (limited to 'src/biome.h')
-rw-r--r-- | src/biome.h | 16 |
1 files changed, 11 insertions, 5 deletions
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; |