Skip to content

Commit

Permalink
Increase to normal chunk height
Browse files Browse the repository at this point in the history
  • Loading branch information
N3RDIUM committed Aug 13, 2022
1 parent 26dd1a6 commit f436b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helpers/chunk_generator.py
Expand Up @@ -19,7 +19,7 @@

def generate_filament(x, y, NOISE, _blocks):
height_noise = abs(round(NOISE.noise2(x / 16, y / 16) * 10))
height_noise_low = -(abs(32 + round(NOISE.noise2(x / 16, y / 16) * 10)))
height_noise_low = -(abs(128 + round(NOISE.noise2(x / 16, y / 16) * 10)))

dirt_noise = abs(5 + round(NOISE.noise2(x / 16, y / 16) * 20))

Expand Down Expand Up @@ -58,4 +58,4 @@ def generate_chunk(position, seed):
'block_types': item['blocktypes']
})
except ValueError:
pass
pass

0 comments on commit f436b6d

Please sign in to comment.