Fabric Seasons

Fabric Seasons

13M Downloads

[Feature Request] Change biome temperature via datapack [Fabric 1.19.2]

xR4YM0ND opened this issue ยท 0 comments

commented

We use Fabric Seasons with EnvironmentZ,
but we wanna change some biome temperatures in different seasons.

It would be soo awesome to change that via a datapack

E.g.

{
    "minecraft:eroded_badlands": {
        "spring": 1.2,
        "summer": 1.6,
        "fall": 1.2,
        "winter": 0.8
    },
    "minecraft:desert": {
        "spring": 1.6,
        "summer": 1.6,
        "fall": 1.6,
        "winter": 1.2
    }
}```

If this could cause a float problem you could set 0, 1, 2, 3, 4, instead of 0.2, 0.4, 0.8, 1.2, 1.6

E.g.
```{
    "minecraft:eroded_badlands": {
        "spring": 3,
        "summer": 4,
        "fall": 3,
        "winter": 2
    },
    "minecraft:desert": {
        "spring": 4,
        "summer": 4,
        "fall": 4,
        "winter": 3
    }
}

Also modded biomes

~ Is this a feature you would consider implementing?