Added ServerInterface.getWorlds.
This commit is contained in:
@@ -19,6 +19,9 @@
|
||||
|
||||
package com.sk89q.worldedit;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author sk89q
|
||||
@@ -57,4 +60,8 @@ public abstract class ServerInterface {
|
||||
public int schedule(long delay, long period, Runnable task) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
public List<LocalWorld> getWorlds() {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user