Page: 1 2 3

1.12.5 Jan 17, 2021
Fixed bug for custom villages
Fixed bug for custom villages that didn't let them spawn

1.12.4 Jan 13, 2021
Tree feller radius
Tree feller radius - allow you to change tree feller radius

1.12.3 Jan 11, 2021
Tree feller update
Tree feller update

1.12.2 Jan 7, 2021
Fixed sugarcane physics
Fixed sugarcane physics

1.12.1 Jan 3, 2021
Small fixes
- Changed noise parameter for Christmas biome (no impact for the biome)
- Updated config
- Updated credits

1.12.0 Jan 1, 2021
Christmas update
Added Christmas biome

1.11.6 Dec 28, 2020
Fixed error appearing when chest probabilities set to 1
Fixed error appearing when chest probabilities set to 1

1.11.5 Dec 10, 2020
Create your own extension
API updated to let you create your own extension for Stratos.

First register your extension :
@Override
    public void onEnable() {
        StratosAPI.getInstance().registerExtension(new YourExtensionClass());
    }

Then create the Extension class :
public class YourExtensionClass extends StratosExtension {

public YourExtensionClass() {
        super("YourExtension");
    }

@Override
    public void activate(int x, int z, ChunkGenerator.ChunkData chunkData, int seed, World world) {
// modify the chunk data here
    }
}

1.11.4 Dec 2, 2020
Fixed wrong materials spawning for custom caves + optimization
Fixed wrong materials spawning for custom caves + optimization

1.11.3 Nov 26, 2020
Fixed ender eye error when thrown
Fixed ender eye error when thrown

1.11.2 Nov 16, 2020

Page: 1 2 3