@EventHandler(priority = EventPriority.LOWEST)
 public void onAsyncPlayerChat(AsyncPlayerChatEvent event) {
   SinkLibrary.refreshDisplayName(event.getPlayer());
 }
 @EventHandler(priority = EventPriority.LOWEST)
 public void onPlayerCommandPreprocess(PlayerCommandPreprocessEvent event) {
   SinkLibrary.refreshDisplayName(event.getPlayer());
 }
 @EventHandler(priority = EventPriority.LOWEST)
 public void onPlayerJoin(PlayerJoinEvent event) {
   SinkLibrary.refreshDisplayName(event.getPlayer());
 }