Add Player Visibility Set API support

This commit is contained in:
Mike Primm 2012-07-28 22:56:12 -05:00
parent e15daaaff4
commit 39c5388a64

View file

@ -1226,5 +1226,9 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
public boolean setDisableChatToWebProcessing(boolean disable) {
return core.setDisableChatToWebProcessing(disable);
}
@Override
public boolean testIfPlayerVisibleToPlayer(String player, String player_to_see) {
return core.testIfPlayerVisibleToPlayer(player, player_to_see);
}
}