Update server interface for mod-supplied texture/model files
This commit is contained in:
parent
eae17ded66
commit
30e7e6e2ff
1 changed files with 6 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ import java.io.IOException;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
|
|
@ -562,6 +563,11 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
|
||||||
public File getModContainerFile(String mod) {
|
public File getModContainerFile(String mod) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> getModList() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Player access abstraction class
|
* Player access abstraction class
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue