mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 10:14:42 +02:00
Fix DelegateQueueCoordinator
This commit is contained in:
@ -176,6 +176,13 @@ public class DelegateQueueCoordinator extends QueueCoordinator {
|
||||
}
|
||||
}
|
||||
|
||||
@Override public Runnable getCompleteTask() {
|
||||
if (parent != null) {
|
||||
return parent.getCompleteTask();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override public void setCompleteTask(Runnable whenDone) {
|
||||
if (parent != null) {
|
||||
parent.setCompleteTask(whenDone);
|
||||
|
Reference in New Issue
Block a user