From 50e11ee1f8f4acfdfd3e2a2c5164bc2c72f1345f Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Tue, 23 Aug 2016 16:27:59 +1000 Subject: [PATCH] * --- build.gradle | 2 +- core/src/main/java/com/boydti/fawe/example/NMSRelighter.java | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index abf88836..e7347b32 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ ext { git = org.ajoberstar.grgit.Grgit.open(file(".git")) revision = "-${git.head().abbreviatedId}" parents = git.head().parentIds; - index = -44; // Offset to mach CI + index = -45; // Offset to mach CI for (;parents != null && !parents.isEmpty();index++) { commit = git.getResolve().toCommit(parents.get(0)); parents = commit.getParentIds(); diff --git a/core/src/main/java/com/boydti/fawe/example/NMSRelighter.java b/core/src/main/java/com/boydti/fawe/example/NMSRelighter.java index e527e36b..84cc5943 100644 --- a/core/src/main/java/com/boydti/fawe/example/NMSRelighter.java +++ b/core/src/main/java/com/boydti/fawe/example/NMSRelighter.java @@ -2,7 +2,6 @@ package com.boydti.fawe.example; import com.boydti.fawe.FaweCache; import com.boydti.fawe.object.FaweQueue; -import com.boydti.fawe.util.MainUtil; import com.boydti.fawe.util.MathMan; import java.util.ArrayDeque; import java.util.ArrayList; @@ -121,7 +120,6 @@ public class NMSRelighter { } public void sendChunks() { - MainUtil.stacktrace(); for (Map.Entry entry : skyToRelight.entrySet()) { RelightSkyEntry chunk = entry.getValue(); CharFaweChunk fc = (CharFaweChunk) queue.getFaweChunk(chunk.x, chunk.z);