This commit is contained in:
Mike Primm 2019-12-15 00:59:48 -06:00
commit eb8c1e0b63
9 changed files with 109 additions and 5 deletions

View file

@ -535,6 +535,20 @@ public class DynmapPlugin
}
}
@Override
public int isSignAt(String wname, int x, int y, int z) {
int blkid = this.getBlockIDAt(wname, x, y, z);
if (blkid == -1)
return -1;
if((blkid == WALLSIGN_ID) || (blkid == SIGNPOST_ID)) {
return 1;
} else {
return 0;
}
}
@Override
public void scheduleServerTask(Runnable run, long delay)
{