Add API to test for player info protection

This commit is contained in:
Mike Primm 2012-07-29 11:01:59 -05:00
parent 8a03a29f0a
commit cf77737f85
1 changed files with 4 additions and 1 deletions

View File

@ -1230,5 +1230,8 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
public boolean testIfPlayerVisibleToPlayer(String player, String player_to_see) {
return core.testIfPlayerVisibleToPlayer(player, player_to_see);
}
@Override
public boolean testIfPlayerInfoProtected() {
return core.testIfPlayerInfoProtected();
}
}