Merge pull request #661 from CocoTheOwner/defaultHeadless

Make headless default
This commit is contained in:
Dan 2021-09-25 13:49:05 -04:00 committed by GitHub
commit 5ddc9243dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ public class IrisSettings {
@Data
public static class IrisSettingsGenerator {
public String defaultWorldType = "overworld";
public boolean headlessPregeneration = false;
public boolean headlessPregeneration = true;
public int maxBiomeChildDepth = 4;
public boolean preventLeafDecay = true;
}