Stratos | World Generator icon

Stratos | World Generator 1.16.3

[✅ Spigot | ✅ Paper] Awesome world generation, fully customizable worlds and more

Page 1 2 3 4
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 4
You might also like...