From e95e1b2f42a6be8c1fb93d0b8ea398a82c19fc1d Mon Sep 17 00:00:00 2001 From: Brettflan Date: Wed, 10 Apr 2013 18:44:06 -0500 Subject: [PATCH] Too many people seem to have been confused and/or scared by the "skipped" report from the Fill task, thinking it indicated a bug or something, so I've removed it. It was originally there mainly as debug info for my own use anyway, way back when the Fill feature was new and not thoroughly tested. --- src/com/wimbli/WorldBorder/WorldFillTask.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/com/wimbli/WorldBorder/WorldFillTask.java b/src/com/wimbli/WorldBorder/WorldFillTask.java index faaf598..12a0e75 100644 --- a/src/com/wimbli/WorldBorder/WorldFillTask.java +++ b/src/com/wimbli/WorldBorder/WorldFillTask.java @@ -48,7 +48,6 @@ public class WorldFillTask implements Runnable // for reporting progress back to user occasionally private transient long lastReport = Config.Now(); - private transient int reportSkipped = 0; private transient int reportTarget = 0; private transient int reportTotal = 0; private transient int reportNum = 0; @@ -178,7 +177,6 @@ public class WorldFillTask implements Runnable // skip past any chunks which are confirmed as fully generated using our super-special isChunkFullyGenerated routine while (worldData.isChunkFullyGenerated(x, z)) { - reportSkipped++; insideBorder = true; if (!moveToNext()) return; @@ -373,7 +371,7 @@ public class WorldFillTask implements Runnable lastReport = Config.Now(); double perc = ((double)(reportTotal + reportNum) / (double)reportTarget) * 100; if (perc > 100) perc = 100; - sendMessage(reportNum + " more chunks processed (" + (reportTotal + reportNum) + " total with " + reportSkipped + " skipped, ~" + Config.coord.format(perc) + "%" + ")"); + sendMessage(reportNum + " more chunks processed (" + (reportTotal + reportNum) + " total, ~" + Config.coord.format(perc) + "%" + ")"); reportTotal += reportNum; reportNum = 0;