Update server interface for mod-supplied texture/model files

This commit is contained in:
Mike Primm 2013-12-28 23:56:22 -06:00
parent d03ed7a461
commit d2ab466dc0

View File

@ -5,6 +5,7 @@ import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.InetSocketAddress;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
@ -562,6 +563,11 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
public File getModContainerFile(String mod) {
return null;
}
@Override
public List<String> getModList() {
return Collections.emptyList();
}
}
/**
* Player access abstraction class