forked from VoxeLibre/VoxeLibre
Fix strider spawning
This commit is contained in:
parent
d393e6a181
commit
21f5586669
|
@ -211,7 +211,11 @@ mcl_mobs:spawn_setup({
|
||||||
type_of_spawning = "lava",
|
type_of_spawning = "lava",
|
||||||
dimension = "nether",
|
dimension = "nether",
|
||||||
biomes = {
|
biomes = {
|
||||||
"Nether"
|
"Nether",
|
||||||
|
"BasaltDelta",
|
||||||
|
"WarpedForest",
|
||||||
|
"CrimsonForest",
|
||||||
|
"SoulsandValley"
|
||||||
},
|
},
|
||||||
min_height = mcl_vars.mg_nether_min,
|
min_height = mcl_vars.mg_nether_min,
|
||||||
max_height = mcl_vars.mg_nether_max,
|
max_height = mcl_vars.mg_nether_max,
|
||||||
|
@ -223,7 +227,11 @@ mcl_mobs:spawn_setup({
|
||||||
type_of_spawning = "lava",
|
type_of_spawning = "lava",
|
||||||
dimension = "nether",
|
dimension = "nether",
|
||||||
biomes = {
|
biomes = {
|
||||||
"Nether"
|
"Nether",
|
||||||
|
"BasaltDelta",
|
||||||
|
"WarpedForest",
|
||||||
|
"CrimsonForest",
|
||||||
|
"SoulsandValley"
|
||||||
},
|
},
|
||||||
min_height = mcl_vars.mg_nether_min,
|
min_height = mcl_vars.mg_nether_min,
|
||||||
max_height = mcl_vars.mg_nether_max,
|
max_height = mcl_vars.mg_nether_max,
|
||||||
|
|
Loading…
Reference in New Issue