From 9d2e9212fa396bbbbaf086aa0f61dc197730b9cf Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Sun, 15 Jan 2017 15:50:12 +1100 Subject: [PATCH] Add option to send packets before relight --- core/src/main/java/com/boydti/fawe/config/Settings.java | 5 ++--- 1 file changed, 2 insertions(+), 3 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 174e5a10..c8f53009 100644 --- a/core/src/main/java/com/boydti/fawe/config/Settings.java +++ b/core/src/main/java/com/boydti/fawe/config/Settings.java @@ -278,10 +278,9 @@ public class Settings extends Config { public static class LIGHTING { @Comment({ - "If chunk lighting should be done asynchronously:", - " - Async lighting is less intense, but more likely to glitch" + "If packet sending should be delayed until relight is finished", }) - public static boolean ASYNC = true; + public static boolean DELAY_PACKET_SENDING = true; @Comment({ "The relighting mode to use:", " - 0 = None (Do no relighting)",