Revert "change the chunky warning message"

This reverts commit 77a366065d.
This commit is contained in:
James Seibel
2024-12-14 12:20:27 -06:00
parent 7a076f5509
commit a9f1e8587c
@@ -236,24 +236,10 @@ public abstract class AbstractModInitializer
// if chunky is active we need to run chunk update synchronously to prevent holes if DH gets overwhelmed
boolean chunkyPresent = modChecker.isModLoaded("chunky");
if (chunkyPresent)
SharedApi.runChunkUpdatesAsync = !modChecker.isModLoaded("chunky");
if (SharedApi.runChunkUpdatesAsync)
{
SharedApi.runChunkUpdatesAsync = false;
LOGGER.info("Chunky detected. DH will run chunk updates on the server thread. This will prevent data loss or holes but may cause stuttering.");
String chunkyWarning = "If you are using Chunky to generate terrain disable \n" +
"DH's 'distant generation' option to prevent generating the same chunks twice.";
if (showChatWarnings)
{
String message =
// orange text
"\u00A76" + "Distant Horizons: Chunky detected." + "\u00A7r\n" +
chunkyWarning;
ClientApi.INSTANCE.showChatMessageNextFrame(message);
}
}
//// Chunky