Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private void loadConfig() {
public void onPing(ProxyPingEvent event) {
Component comp = manager.provide();
String legacy = LegacyComponentSerializer.legacySection().serialize(comp);
event.getResponse().setDescriptionComponent(TextComponent.fromLegacyText(legacy));
event.getResponse().setDescriptionComponent(new TextComponent(TextComponent.fromLegacyText(legacy)));
}

// ServerInfoProvider
Expand Down
1 change: 1 addition & 0 deletions wiki/Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Set `weather.enable` to `true` and specify `city`. Use `%weather_motd%` or `%wea
placeholders in your templates. The `weather.update-interval-minutes` option controls how often
new data is fetched (default 10 minutes).NEED API KEY.


### Discord

If DiscordSRV is installed you can show online Discord users with `%discord_online%`.
Expand Down
Loading