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
-
Method Details
-
render
Renders a server brand message to a player's client.- Parameters:
fPlayer- the player to receive the brand messagecomponent- the brand component to display
-