forked from LogBlock/LogBlock
Fixed server freeze on timespecs like "1day"
This commit is contained in:
@@ -147,7 +147,7 @@ public class LogBlock extends JavaPlugin
|
||||
timer.scheduleAtFixedRate(consumer, config.delayBetweenRuns * 1000, config.delayBetweenRuns * 1000);
|
||||
log.info("[LogBlock] Scheduled consumer with timer.");
|
||||
}
|
||||
log.info("Logblock v" + getDescription().getVersion() + " enabled.");
|
||||
log.info("Logblock v" + getDescription().getVersion() + " by DiddiZ enabled.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@@ -94,10 +94,10 @@ public class Utils
|
||||
hours = Integer.parseInt(spec[0].substring(lastIndex, currIndex - 1));
|
||||
else if (param.equals("m"))
|
||||
minutes = Integer.parseInt(spec[0].substring(lastIndex, currIndex - 1));
|
||||
}
|
||||
lastIndex = currIndex;
|
||||
currIndex++;
|
||||
}
|
||||
}
|
||||
if (days == 0 && hours == 0 && minutes == 0)
|
||||
return -1;
|
||||
return minutes + hours * 60 + days * 1440;
|
||||
|
Reference in New Issue
Block a user