Change ModCore messages cause people keep thinking those are errors

This commit is contained in:
Jonas Herzig
2020-05-23 14:37:44 +02:00
parent b68d077b38
commit 154952a8ac
3 changed files with 7 additions and 3 deletions
@@ -53,7 +53,9 @@ public class ReplayModMMLauncher implements Runnable {
String mcVer = minecraft.get().getMetadata().getVersion().getFriendlyString();
int result = ModCoreInstaller.initialize(gameDir, mcVer + "_fabric");
System.out.println("ReplayMod ModCore init result: " + result);
if (result != -2) { // Don't even bother logging the result if there's no ModCore for this version.
System.out.println("ReplayMod ModCore init result: " + result);
}
if (ModCoreInstaller.isErrored()) {
System.err.println(ModCoreInstaller.getError());
}
@@ -57,7 +57,9 @@
//$$ }
//$$
//$$ int result = ModCoreInstaller.initialize(Launch.minecraftHome, mcVer + "_forge");
//$$ System.out.println("ReplayMod ModCore init result: " + result);
//$$ if (result != -2) { // Don't even bother logging the result if there's no ModCore for this version.
//$$ System.out.println("ReplayMod ModCore init result: " + result);
//$$ }
//$$ if (ModCoreInstaller.isErrored()) {
//$$ System.err.println(ModCoreInstaller.getError());
//$$ }