Remove manifold string plugin
This commit is contained in:
@@ -191,7 +191,7 @@ public class WorldGenModule implements Closeable
|
||||
String waitingCountStr = F3Screen.NUMBER_FORMAT.format(worldGenState.worldGenerationQueue.getWaitingTaskCount());
|
||||
String inProgressCountStr = F3Screen.NUMBER_FORMAT.format(worldGenState.worldGenerationQueue.getInProgressTaskCount());
|
||||
String totalCountEstimateStr = F3Screen.NUMBER_FORMAT.format(worldGenState.worldGenerationQueue.getEstimatedTotalTaskCount());
|
||||
messageList.add("World Gen Tasks: ${waitingCountStr}/${totalCountEstimateStr} (in progress: ${inProgressCountStr})");
|
||||
messageList.add("World Gen Tasks: "+waitingCountStr+"/"+totalCountEstimateStr+" (in progress "+inProgressCountStr+")");
|
||||
|
||||
worldGenState.worldGenerationQueue.addDebugMenuStringsToList(messageList);
|
||||
}
|
||||
|
||||
+1
-1
@@ -82,7 +82,7 @@ public class ClientNetworkState implements Closeable
|
||||
}
|
||||
|
||||
this.serverTimeOffset = message.serverTime - System.currentTimeMillis();
|
||||
LOGGER.info("Server time offset: [${this.serverTimeOffset}] ms");
|
||||
LOGGER.info("Server time offset: ["+this.serverTimeOffset+"] ms");
|
||||
});
|
||||
|
||||
this.networkSession.registerHandler(CloseInternalEvent.class, message ->
|
||||
|
||||
@@ -69,7 +69,7 @@ public abstract class AbstractDhWorld implements IDhWorld, Closeable
|
||||
readOnlyStr += " - ReadOnly";
|
||||
}
|
||||
|
||||
String message = "${environment} World with ${levelCountStr} levels${readOnlyStr}";
|
||||
String message = environment+" World with "+levelCountStr+" levels"+readOnlyStr;
|
||||
messageList.add(message);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user