Show a mod loader exception in console (#2191)

This commit is contained in:
rh-github-2015
2020-03-19 08:47:15 +01:00
committed by GitHub
parent 497ce2366a
commit f75312f7a1

View File

@ -155,7 +155,9 @@ object RulesetCache :HashMap<String,Ruleset>(){
modRuleset.name = modFolder.name()
this[modRuleset.name] = modRuleset
}
catch (ex:Exception){}
catch (ex:Exception){
println( "Exception loading " + modFolder.name() + ": " + ex.message )
}
}
}