mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-01 23:47:21 +00:00
fix method
when having relocated worlds folder this method would fail making warning appear
This commit is contained in:
parent
0575cd85c8
commit
09cdd61a68
@ -160,13 +160,9 @@ public class ServerBootSFG {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static boolean enoughDiskSpace() {
|
public static boolean enoughDiskSpace() {
|
||||||
File freeSpace = new File(Bukkit.getWorldContainer() + ".");
|
File freeSpace = Bukkit.getWorldContainer();
|
||||||
double gigabytes = freeSpace.getFreeSpace() / (1024.0 * 1024.0 * 1024.0);
|
double gigabytes = freeSpace.getFreeSpace() / (1024.0 * 1024.0 * 1024.0);
|
||||||
if (gigabytes > 3){
|
return gigabytes > 3;
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean checkJavac(String path) {
|
private static boolean checkJavac(String path) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user