Add maven repo

closes #1394
This commit is contained in:
Jesse Boyd
2017-03-08 16:51:01 +11:00
parent aa7b770c03
commit e94adb04ea
3 changed files with 45 additions and 3 deletions

View File

@ -141,7 +141,7 @@ public class Load extends SubCommand {
try {
String schematic = schematics.get(i);
String[] split = schematic.split("_");
if (split.length != 6) {
if (split.length < 5) {
continue;
}
String time = secToTime((System.currentTimeMillis() / 1000) - Long.parseLong(split[0]));