Add stubs for block unique ID support

This commit is contained in:
Mike Primm 2014-02-01 01:16:15 -06:00
parent 8350727a73
commit eeffa4f98d

View File

@ -218,7 +218,7 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
/** /**
* Server access abstraction class * Server access abstraction class
*/ */
public class BukkitServer implements DynmapServerInterface { public class BukkitServer extends DynmapServerInterface {
/* Chunk load handling */ /* Chunk load handling */
private Object loadlock = new Object(); private Object loadlock = new Object();
@ -560,15 +560,6 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
public String getServerIP() { public String getServerIP() {
return Bukkit.getServer().getIp(); return Bukkit.getServer().getIp();
} }
@Override
public File getModContainerFile(String mod) {
return null;
}
@Override
public List<String> getModList() {
return Collections.emptyList();
}
@Override @Override
public Map<Integer, String> getBlockIDMap() { public Map<Integer, String> getBlockIDMap() {
@ -581,11 +572,6 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
} }
return map; return map;
} }
@Override
public InputStream openResource(String modid, String rname) {
return null; // No mods supported
}
} }
/** /**
* Player access abstraction class * Player access abstraction class