fix a silly - bump version
All checks were successful
Publish to snapshot maven / build (push) Successful in 34s
All checks were successful
Publish to snapshot maven / build (push) Successful in 34s
This commit is contained in:
parent
37a08c62d5
commit
511eb0c8b0
|
@ -7,7 +7,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "dev.frogmc"
|
group = "dev.frogmc"
|
||||||
version = "0.0.1-alpha.5"
|
version = "0.0.1-alpha.6"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
|
|
|
@ -78,7 +78,11 @@ public class FrogLoaderImpl implements FrogLoader {
|
||||||
modIds = collectModIds();
|
modIds = collectModIds();
|
||||||
LOGGER.info(ModUtil.getModList(getMods()));
|
LOGGER.info(ModUtil.getModList(getMods()));
|
||||||
LOGGER.info("Launching...");
|
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();
|
gamePlugin.run();
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
LoaderGui.execReport(CrashReportGenerator.writeReport(t, getMods()), false);
|
LoaderGui.execReport(CrashReportGenerator.writeReport(t, getMods()), false);
|
||||||
|
|
Loading…
Reference in a new issue