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);
|
timer.scheduleAtFixedRate(consumer, config.delayBetweenRuns * 1000, config.delayBetweenRuns * 1000);
|
||||||
log.info("[LogBlock] Scheduled consumer with timer.");
|
log.info("[LogBlock] Scheduled consumer with timer.");
|
||||||
}
|
}
|
||||||
log.info("Logblock v" + getDescription().getVersion() + " enabled.");
|
log.info("Logblock v" + getDescription().getVersion() + " by DiddiZ enabled.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -94,9 +94,9 @@ public class Utils
|
|||||||
hours = Integer.parseInt(spec[0].substring(lastIndex, currIndex - 1));
|
hours = Integer.parseInt(spec[0].substring(lastIndex, currIndex - 1));
|
||||||
else if (param.equals("m"))
|
else if (param.equals("m"))
|
||||||
minutes = Integer.parseInt(spec[0].substring(lastIndex, currIndex - 1));
|
minutes = Integer.parseInt(spec[0].substring(lastIndex, currIndex - 1));
|
||||||
lastIndex = currIndex;
|
|
||||||
currIndex++;
|
|
||||||
}
|
}
|
||||||
|
lastIndex = currIndex;
|
||||||
|
currIndex++;
|
||||||
}
|
}
|
||||||
if (days == 0 && hours == 0 && minutes == 0)
|
if (days == 0 && hours == 0 && minutes == 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
Reference in New Issue
Block a user