Merge 1.19.2 into 1.19.4

This commit is contained in:
embeddedt 2023-08-18 14:39:25 -04:00
commit 2ee1ef13ec
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -23,7 +23,7 @@ public class BootstrapMixin {
@Inject(method = "bootStrap", at = @At("HEAD"))
private static void doModernFixBootstrap(CallbackInfo ci) {
if(!isBootstrapped) {
LOGGER.info("ModernFix reached bootstrap stage ({} after launch)", TimeFormatter.formatNanos(ManagementFactory.getRuntimeMXBean().getUptime() * 1000L));
LOGGER.info("ModernFix reached bootstrap stage ({} after launch)", TimeFormatter.formatNanos(ManagementFactory.getRuntimeMXBean().getUptime() * 1000L * 1000L));
ModWorkManagerQueue.replace();
}
}