mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 01:37:37 +00:00
Fix another NPE in schematics.
This commit is contained in:
parent
2734dc377c
commit
03d7cd394a
@ -263,7 +263,7 @@ public class SchematicCommands {
|
|||||||
File dir = worldEdit.getWorkingDirectoryFile(worldEdit.getConfiguration().saveDir);
|
File dir = worldEdit.getWorkingDirectoryFile(worldEdit.getConfiguration().saveDir);
|
||||||
List<File> fileList = allFiles(dir);
|
List<File> fileList = allFiles(dir);
|
||||||
|
|
||||||
if (fileList.isEmpty()) {
|
if (fileList == null || fileList.isEmpty()) {
|
||||||
actor.printError("No schematics found.");
|
actor.printError("No schematics found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user