Patch a few null references

This commit is contained in:
zontreck 2023-12-20 17:55:35 -07:00
parent bd3e570097
commit 46142e36aa
8 changed files with 54 additions and 16 deletions

View file

@ -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();
}
}