Implement basic structure gen

This commit is contained in:
dfsek
2020-09-28 02:16:49 -07:00
parent 3e2fada357
commit 080a6d98f9
4 changed files with 19 additions and 4 deletions

View File

@@ -118,7 +118,12 @@ public class TerraChunkGenerator extends GaeaChunkGenerator {
@Override
public @NotNull List<BlockPopulator> getDefaultPopulators(@NotNull World world) {
return Arrays.asList(new CavePopulator(), popMan);
try {
return Arrays.asList(new CavePopulator(), new StructurePopulator(), popMan);
} catch(IOException e) {
e.printStackTrace();
throw new IllegalArgumentException();
}
}
@Override