Mgv6: Remove incorrectly defined and unused 'volume nodes'

This commit is contained in:
paramat 2017-08-20 23:07:07 +01:00 committed by paramat
parent 7657fe7a50
commit 1dd535c0c6
2 changed files with 0 additions and 8 deletions

View File

@ -512,13 +512,6 @@ void MapgenV6::makeChunk(BlockMakeData *data)
central_area_size = node_max - node_min + v3s16(1, 1, 1);
assert(central_area_size.X == central_area_size.Z);
int volume_blocks = (blockpos_max.X - blockpos_min.X + 1)
* (blockpos_max.Y - blockpos_min.Y + 1)
* (blockpos_max.Z - blockpos_max.Z + 1);
volume_nodes = volume_blocks *
MAP_BLOCKSIZE * MAP_BLOCKSIZE * MAP_BLOCKSIZE;
// Create a block-specific seed
blockseed = get_blockseed(data->seed, full_node_min);

View File

@ -91,7 +91,6 @@ public:
v3s16 full_node_min;
v3s16 full_node_max;
v3s16 central_area_size;
int volume_nodes;
Noise *noise_terrain_base;
Noise *noise_terrain_higher;