Fix NPE when branding isn't present
This commit is contained in:
parent
5be6e8b756
commit
cc2bf9d8ac
1 changed files with 1 additions and 1 deletions
|
@ -831,7 +831,7 @@ public class Loader
|
||||||
{
|
{
|
||||||
loaded.load(getClass().getClassLoader().getResourceAsStream("fmlbranding.properties"));
|
loaded.load(getClass().getClassLoader().getResourceAsStream("fmlbranding.properties"));
|
||||||
}
|
}
|
||||||
catch (IOException e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// File not found - ignore
|
// File not found - ignore
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue