Give blockstate thread more time before warning
This commit is contained in:
parent
f545debb97
commit
fcb1e92f90
1 changed files with 0 additions and 7 deletions
|
@ -60,13 +60,6 @@ public class ThreadLink {
|
|||
if (getModule().isDebug())
|
||||
log.debug("DB-Thread '" + Thread.currentThread().getName() + "' started.");
|
||||
lastTimeout = System.currentTimeMillis() + STARTUP_TIMING;
|
||||
updateQueue.add(new Action() { // After Initial Queue caching
|
||||
@Override
|
||||
public void process(ThreadLink link, DBQueries q) {
|
||||
if (lastTimeout > System.currentTimeMillis())
|
||||
lastTimeout = System.currentTimeMillis();
|
||||
}
|
||||
});
|
||||
while (!shutdown || !updateQueue.isEmpty()) {
|
||||
try {
|
||||
List<Action> acts = new LinkedList<Action>();
|
||||
|
|
Loading…
Reference in a new issue