Add call needed for sign block checks

This commit is contained in:
Mike Primm 2012-12-31 12:29:28 -06:00
parent 1a2f63bcfb
commit 278fa36f94
1 changed files with 9 additions and 0 deletions

View File

@ -196,6 +196,15 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
private int chunks_in_cur_tick = 0;
private long cur_tick;
@Override
public int getBlockIDAt(String wname, int x, int y, int z) {
World w = getServer().getWorld(wname);
if((w != null) && w.isChunkLoaded(x >> 4, z >> 4)) {
return w.getBlockTypeIdAt(x, y, z);
}
return -1;
}
@Override
public void scheduleServerTask(Runnable run, long delay) {
getServer().getScheduler().scheduleSyncDelayedTask(DynmapPlugin.this, run, delay);