Is it possible to use player actionbar with Bukkit 1.16? I have been trying different apis and got none of them to work. Any help is appreciated! Code: public static void SendActionBar(Player player, String message) { // Get player uuid UUID uuid = player.getUniqueId(); // send actionbar to player IChatBaseComponent barmsg = ChatSerializer.a("{\"text\": \"" + message + "\"}"); PacketPlayOutChat bar = new PacketPlayOutChat(barmsg, ChatMessageType.GAME_INFO, uuid); ((CraftPlayer) player).getHandle().playerConnection.sendPacket(bar); }