Fix a crash when the ForgeConfigApiPort mod is included

This commit is contained in:
James Seibel
2023-07-29 17:35:00 -05:00
parent 60be8302f4
commit 7b3f63a2f2
2 changed files with 2 additions and 2 deletions
@@ -247,7 +247,7 @@ public class MinecraftClientWrapper implements IMinecraftClientWrapper, IMinecra
@Override
public void crashMinecraft(String errorMessage, Throwable exception)
{
LOGGER.error(ModInfo.READABLE_NAME + " had the following error: [" + errorMessage + "]. Crashing Minecraft...");
LOGGER.error(ModInfo.READABLE_NAME + " had the following error: [" + errorMessage + "]. Crashing Minecraft...", exception);
CrashReport report = new CrashReport(errorMessage, exception);
Minecraft.crash(report);
}