Interface BrandRender


public interface BrandRender
Renders server brand messages in player's client multiplayer screen.

Usage example:

BrandRender brandRender = flectonePulse.get(BrandRender.class);

// Display custom server brand
brandRender.render(player, Component.text("My Awesome Server"));
Since:
1.7.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    render(FPlayer fPlayer, net.kyori.adventure.text.Component component)
    Renders a server brand message to a player's client.
  • Method Details

    • render

      void render(FPlayer fPlayer, net.kyori.adventure.text.Component component)
      Renders a server brand message to a player's client.
      Parameters:
      fPlayer - the player to receive the brand message
      component - the brand component to display