I realize that you won't be able to see all 512
This commit is contained in:
parent
d38db03600
commit
fd37adaac8
@ -164,11 +164,14 @@ public class MainUtil {
|
|||||||
if (file.getName().endsWith(".bd")) {
|
if (file.getName().endsWith(".bd")) {
|
||||||
if (timediff > Integer.MAX_VALUE || now - file.lastModified() <= timediff) {
|
if (timediff > Integer.MAX_VALUE || now - file.lastModified() <= timediff) {
|
||||||
files.add(file);
|
files.add(file);
|
||||||
|
if (files.size() > 64) {
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (files.size() > 512) {
|
}
|
||||||
|
if (files.size() > 64) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
World world = origin.getWorld();
|
World world = origin.getWorld();
|
||||||
|
Loading…
Reference in New Issue
Block a user