mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
*Wrong runnable
This commit is contained in:
parent
d22f7b8781
commit
db69da5b07
@ -220,6 +220,7 @@ public class ExpireManager {
|
|||||||
TaskManager.runTaskAsync(new Runnable() {
|
TaskManager.runTaskAsync(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
final Runnable task = this;
|
||||||
if (ExpireManager.this.running != 2) {
|
if (ExpireManager.this.running != 2) {
|
||||||
ExpireManager.this.running = 0;
|
ExpireManager.this.running = 0;
|
||||||
return;
|
return;
|
||||||
@ -242,13 +243,12 @@ public class ExpireManager {
|
|||||||
expiredTask.run(plot, new Runnable() {
|
expiredTask.run(plot, new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
TaskManager.IMP.taskLaterAsync(this, 1);
|
TaskManager.IMP.taskLaterAsync(task, 1);
|
||||||
}
|
}
|
||||||
}, expiryTask.requiresConfirmation());
|
}, expiryTask.requiresConfirmation());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
final Runnable task = this;
|
|
||||||
final RunnableVal<PlotAnalysis> handleAnalysis = new RunnableVal<PlotAnalysis>() {
|
final RunnableVal<PlotAnalysis> handleAnalysis = new RunnableVal<PlotAnalysis>() {
|
||||||
@Override
|
@Override
|
||||||
public void run(final PlotAnalysis changed) {
|
public void run(final PlotAnalysis changed) {
|
||||||
@ -308,7 +308,7 @@ public class ExpireManager {
|
|||||||
}
|
}
|
||||||
}, 86400000);
|
}, 86400000);
|
||||||
} else {
|
} else {
|
||||||
TaskManager.runTaskLaterAsync(this, 20 * 10);
|
TaskManager.runTaskLaterAsync(task, 20 * 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user