Patch a few null references
This commit is contained in:
parent
bd3e570097
commit
46142e36aa
8 changed files with 54 additions and 16 deletions
|
@ -53,4 +53,10 @@ public class StarterProvider extends OTEDatastore
|
|||
return v;
|
||||
}else return null;
|
||||
}
|
||||
|
||||
public static boolean exists()
|
||||
{
|
||||
Path v = FILE_TREE_PATH.resolve("starter.nbt");
|
||||
return v.toFile().exists();
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue