diff --git a/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java b/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java index f11046ab..f34b4f2a 100644 --- a/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java +++ b/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java @@ -238,7 +238,7 @@ public class SchematicCommands extends MethodCommands { if (filename.startsWith("#")) { f = player.openFileOpenDialog(new String[] { format.getExtension() }); if (!f.exists()) { - player.printError("Schematic " + filename + " does not exist!"); + player.printError("Schematic " + filename + " does not exist! (" + f + ")"); return; } } else { @@ -267,7 +267,7 @@ public class SchematicCommands extends MethodCommands { } } if (!f.exists() || !MainUtil.isInSubDirectory(working, f)) { - player.printError("Schematic " + filename + " does not exist!"); + player.printError("Schematic " + filename + " does not exist! (" + f.exists() + "|" + f + "|" + (!MainUtil.isInSubDirectory(working, f)) + ")"); return; } in = new FileInputStream(f);