
Stratos | World Generator 1.16.3
[✅ Spigot | ✅ Paper] Awesome world generation, fully customizable worlds and more
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 :
Then create the Extension class :
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.2
Nov 16, 2020