mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Fix NPE on Multiverse core link
This commit is contained in:
parent
24480ef13a
commit
1421869094
@ -111,8 +111,16 @@ public class MultiverseCoreLink
|
||||
|
||||
public String getWorldNameType(String worldName, String defaultType)
|
||||
{
|
||||
String t = worldNameTypes.get(worldName);
|
||||
return t == null ? defaultType : t;
|
||||
try
|
||||
{
|
||||
String t = worldNameTypes.get(worldName);
|
||||
return t == null ? defaultType : t;
|
||||
}
|
||||
|
||||
catch(Throwable e)
|
||||
{
|
||||
return defaultType;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean supported()
|
||||
|
Loading…
x
Reference in New Issue
Block a user