You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
GamerCoder edited this page May 22, 2023
·
2 revisions
Players cannot see all advancements constructed with Advancement.builder() automatically, and must manually be added using PlayerAdvancementManager.
Playerplayer = ...
Advancementa1 = ...
Advancementa2 = ...
PlayerAdvancementManagermanager = BukkitAdvancementManager.of(player);
// Makes Advancements visible on the Advancements Screenmanager.addAdvancement(a1, a2);
// Makes Advancements not visible on the Advancements Screenmanager.removeAdvancement(a1, a2);