fix a silly - bump version
All checks were successful
Publish to snapshot maven / build (push) Successful in 34s

This commit is contained in:
Ecorous 2024-06-17 17:19:56 +01:00
parent 37a08c62d5
commit 511eb0c8b0
Signed by: Ecorous
SSH key fingerprint: SHA256:ni7WK6Ud51dVmDv8DctoqLEr3XXhAI51s6IFMYvJKDM
2 changed files with 6 additions and 2 deletions

View file

@ -7,7 +7,7 @@ plugins {
}
group = "dev.frogmc"
version = "0.0.1-alpha.5"
version = "0.0.1-alpha.6"
repositories {
maven {

View file

@ -78,7 +78,11 @@ public class FrogLoaderImpl implements FrogLoader {
modIds = collectModIds();
LOGGER.info(ModUtil.getModList(getMods()));
LOGGER.info("Launching...");
modProviders.forEach(plugin -> plugin.preLaunch(mods.get(plugin.id()).values()));
modProviders.forEach(plugin -> {
if (mods.get(plugin.id()) != null) { // we don't like NPEs
plugin.preLaunch(mods.get(plugin.id()).values());
}
});
gamePlugin.run();
} catch (Throwable t) {
LoaderGui.execReport(CrashReportGenerator.writeReport(t, getMods()), false);