We are using mclo.gs for GTNH via BetterCrashes. The service helps us a ton for pack development. Thank you!
One (minor cosmetic) issue we see is with crash logs: they all seem to get detected as vanilla crash logs even though we are running Forge on MC 1.7.10.
Example log
Poking around, it looks like codex-minecraft checks the logs for:
|
->addPattern("/^\tIs Modded: Definitely; Server brand changed to '(?:fml,)?forge'/im"), |
The 1.7.10 logs seem to be indented with spaces rather than tabs, so that's why that regex doesn't trigger. The Forge crash log in tests is for MC 1.10.2, so somewhere between 1.7.10 and 1.10.2 the crashlog indent was switched from spaces to tabs.
We are using mclo.gs for GTNH via BetterCrashes. The service helps us a ton for pack development. Thank you!
One (minor cosmetic) issue we see is with crash logs: they all seem to get detected as vanilla crash logs even though we are running Forge on MC 1.7.10.
Example log
Poking around, it looks like codex-minecraft checks the logs for:
codex-minecraft/src/Log/Minecraft/Vanilla/Forge/ForgeCrashReportLog.php
Line 26 in 790d402
The 1.7.10 logs seem to be indented with spaces rather than tabs, so that's why that regex doesn't trigger. The Forge crash log in tests is for MC 1.10.2, so somewhere between 1.7.10 and 1.10.2 the crashlog indent was switched from spaces to tabs.