Don't crash on failed registration

I think Forge is doing something weird with registration event handlers causing ClassNotFoundExceptions

Closes #37
This commit is contained in:
Shadowfacts 2018-06-09 17:32:39 -04:00
parent 5d8ddee776
commit ecf20f1a76
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,4 @@
mod_version = 1.7.0
mod_version = 1.7.1
group = net.shadowfacts
archivesBaseName = Forgelin

View File

@ -52,7 +52,6 @@ object ForgelinAutomaticEventSubscriber {
LOGGER.debug("Registered @EventBusSubscriber object {}", subscriber.className)
} catch (e: Throwable) {
LOGGER.error("An error occurred trying to load an @EventBusSubscriber object {} for modid {}", mod.modId, e)
throw LoaderException(e)
}
}
}