(File path)
| 232 | } |
| 233 | |
| 234 | public static boolean verifyMinecraftDirectory(File path) { |
| 235 | File saves = new File(path + File.separator + Minecraft.SAVES_FOLDER); |
| 236 | if (saves.exists() && saves.isDirectory()) { |
| 237 | return true; |
| 238 | } |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | public File getWorldPath(World world) { |
| 243 | return new File(this.getMinceraftSavePath() + File.separator + world.toString()); |
no outgoing calls
no test coverage detected