BiomeTweaker

BiomeTweaker

13M Downloads

Biome Type Nether (1.10.2)

gdarai opened this issue ยท 1 comments

commented

MC 1.10.2
Hi, I need to add Biome Dict Type Nether to some overvorld biome, let's say Bryce
I tried:

mesaBryce = forBiomes(165, 17)
mesaBryce.temperature(2)
mesaBryce.addDicTypes("NETHER") 

But it seems to not work... since the output is still:

"Dictionary Types": [
    "HOT",
    "DRY",
    "SAVANNA",
    "PLAINS"
  ],

Can you give me some advice what may I be dong wrongly?

commented

Never mind... thank ou anyway... I figured it out: :o)

mesaBryce = forBiomes(165, 17)
mesaBryce.set("temperature", 2)
mesaBryce.addDicType("NETHER")