ignored exception

This commit is contained in:
MattBDev 2016-05-21 11:18:35 -04:00
commit 8af30667e4
2 changed files with 1 additions and 5 deletions

View File

@ -198,7 +198,7 @@ public class FileUUIDHandler extends UUIDHandlerImplementation {
ExpireManager.IMP.storeDate(uuid, last);
}
toAdd.put(new StringWrapper(name), uuid);
} catch (IOException ignored) {
} catch (Exception ignored) {
PS.debug(C.PREFIX + "&6Invalid PlayerData: " + uuid.toString() + ".dat");
}
}

View File

@ -55,10 +55,6 @@ public class Download extends SubCommand {
return false;
}
if (args.length == 0 || (args.length == 1 && StringMan.isEqualIgnoreCaseToAny(args[0], "sch", "schem", "schematic"))) {
if (plot.getVolume() > 512d * 512d * 256d) {
C.SCHEMATIC_TOO_LARGE.send(plr);
return false;
}
plot.addRunning();
SchematicHandler.manager.getCompoundTag(plot, new RunnableVal<CompoundTag>() {
@Override