Towny Classic

Towny Classic

3.2k Downloads

Suggestion: Add support for Vanish MetaData API on servers older than 1.19.3.

LlmDl opened this issue ยท 0 comments

commented

Please explain your feature request to the best of your abilities:

private boolean isVanished(Player player) {
        for (MetadataValue meta : player.getMetadata("vanished")) {
            if (meta.asBoolean()) return true;
        }
        return false;
}

Closes #7003

Alternatively we use the actual API so we can use their version of canSee(player, player)