mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 11:15:21 +01:00
Add stubs for block unique ID support
This commit is contained in:
parent
8350727a73
commit
eeffa4f98d
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user