Add stubs for block unique ID support
This commit is contained in:
parent
439c879196
commit
aec4889579
1 changed files with 1 additions and 15 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue