Brikster / Chatty

Bukkit-compatible chat management system
MIT License
88 stars 50 forks source link

Vanish integration #309

Open PadowYT2 opened 1 month ago

PadowYT2 commented 1 month ago

There are currently no checkers for when the person is vanished or not, there should be checks in:


Сейчас нету некаких проверок на то что игрок в ванише или нет, должны быть проверки на:


Этот код будет работать для всех популярных плагинов:

public boolean isVanished(Player player) {
    return player.getMetadata("vanished").stream().anyMatch(MetadataValue::asBoolean);
}