From ba62563b725e6cb7b22d42f2a2afd3da8856564b Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Wed, 21 Dec 2016 05:41:34 +1100 Subject: [PATCH] Tweak some default settings --- core/src/main/java/com/boydti/fawe/config/Settings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/boydti/fawe/config/Settings.java b/core/src/main/java/com/boydti/fawe/config/Settings.java index 94f8b0ec..f5bd6fdc 100644 --- a/core/src/main/java/com/boydti/fawe/config/Settings.java +++ b/core/src/main/java/com/boydti/fawe/config/Settings.java @@ -133,7 +133,7 @@ public class Settings extends Config { "9 = 1 x high, 1 x medium, 3 x fast (best compression)", "NOTE: If using disk, do some compression (3+) as smaller files save faster" }) - public static int COMPRESSION_LEVEL = 8; + public static int COMPRESSION_LEVEL = 3; @Comment({ "The buffer size for compression:", " - Larger = better ratio but uses more upfront memory" @@ -253,7 +253,7 @@ public class Settings extends Config { @Comment("Max physics per interval (per chunk)") public static int PHYSICS = 512; @Comment("Max item spawns per interval (per chunk)") - public static int ITEMS = 48; + public static int ITEMS = 128; }