mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-18 22:11:07 +00:00
fixed nether by adding some glowstone to have some light
(necessary in 1.12)
This commit is contained in:
parent
efc4ab786d
commit
36b11e6163
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ function generation ({version, seed, level = 50} = {}) {
|
|||
let data
|
||||
|
||||
if (y < bedrockheightbottom) block = 7
|
||||
else if (y < level) block = 87
|
||||
else if (y < level) block = seedRand(50) === 0 ? 89 : 87
|
||||
else if (y > 127 - bedrockheighttop) block = 7
|
||||
|
||||
const pos = new Vec3(x, y, z)
|
||||
|
|
|
|||
Loading…
Reference in a new issue