improve world gen/retrieve message

This commit is contained in:
James Seibel
2026-06-01 19:03:01 -05:00
parent f69ad051d1
commit b97c35387c
3 changed files with 3 additions and 3 deletions
@@ -102,7 +102,7 @@ public abstract class AbstractLodRequestState
remainingChunkCount += this.retrievalQueue.getQueuedChunkCount();
String remainingChunkCountStr = F3Screen.NUMBER_FORMAT.format(remainingChunkCount);
String message = "DH is "+this.retrievalQueue.getRetrievalTypeName()+" chunks. ";
String message = "DH is "+this.retrievalQueue.getRetrievalTypeName()+". ";
if (this.dhLevel.getClass() == DhServerLevel.class)
{
// server levels can have multiple world generators running at once,
@@ -52,7 +52,7 @@ public class RemoteWorldRetrievalQueue extends AbstractFullDataNetworkRequestQue
public byte highestDataDetail() { return LodUtil.BLOCK_DETAIL_LEVEL; }
@Override
public String getRetrievalTypeName() { return "downloading"; }
public String getRetrievalTypeName() { return "downloading LODs"; }
@Override
public CompletableFuture<DataSourceRetrievalResult> submitRetrievalTask(long sectionPos, byte requiredDataDetail)
@@ -593,7 +593,7 @@ public class WorldGenerationQueue implements IFullDataSourceRetrievalQueue, IDeb
@Override public byte lowestDataDetail() { return this.lowestDataDetail; }
@Override public byte highestDataDetail() { return this.highestDataDetail; }
@Override public String getRetrievalTypeName() { return "generating"; }
@Override public String getRetrievalTypeName() { return "generating chunks"; }
@Override public int getEstimatedRemainingTaskCount() { return this.estimatedRemainingTaskCount; }
@Override public void setEstimatedRemainingTaskCount(int newEstimate) { this.estimatedRemainingTaskCount = newEstimate; }