Configurable Region Compression Format (#8505)

This commit is contained in:
Astralchroma 2023-07-23 01:13:48 +01:00
parent e1adb82073
commit e5b7dd2906
2 changed files with 54 additions and 0 deletions

View file

@ -589,6 +589,14 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ public boolean allowHeadlessPistons = false;
+ @Comment("This setting controls if grindstones should be able to output overstacked items (such as cursed books).")
+ public boolean allowGrindstoneOverstacking = false;
+ @Comment("This setting controls what compression format is used for region files.")
+ public CompressionFormat compressionFormat = CompressionFormat.ZLIB;
+
+ public enum CompressionFormat {
+ GZIP,
+ ZLIB,
+ NONE
+ }
+ }
+
+ public Commands commands;