Fix NPE on Multiverse core link

This commit is contained in:
Daniel Mills 2021-06-11 16:52:53 -04:00
parent 24480ef13a
commit 1421869094

View File

@ -110,11 +110,19 @@ public class MultiverseCoreLink
} }
public String getWorldNameType(String worldName, String defaultType) public String getWorldNameType(String worldName, String defaultType)
{
try
{ {
String t = worldNameTypes.get(worldName); String t = worldNameTypes.get(worldName);
return t == null ? defaultType : t; return t == null ? defaultType : t;
} }
catch(Throwable e)
{
return defaultType;
}
}
public boolean supported() public boolean supported()
{ {
return getMultiverse() != null; return getMultiverse() != null;