Realistic Terrain Generation

Realistic Terrain Generation

3M Downloads

Biome config load order issue

srs-bsns opened this issue ยท 1 comments

commented

Biome configs need to be initialised and loaded before use in surface classes:

https://github.com/Team-RTG/Realistic-Terrain-Generation/blob/1.12.2-dev/src/main/java/rtg/api/world/biome/RealisticBiomeBase.java#L62

        this.config = new BiomeConfig(getConfigFile());
        initConfig();
        getConfig().loadConfig();
        this.terrain = initTerrain();
        this.surface = initSurface();
commented

closed by: 2d04269