Skip to content
Open
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 @@ -51,6 +51,7 @@ public final class MiniMOTDPlugin extends JavaPlugin implements MiniMOTDPlatform
public void onEnable() {
this.logger = LoggerFactory.getLogger(this.getName());
this.miniMOTD = new MiniMOTD<>(this);
this.miniMOTD.configManager().loadExtraConfigs();
this.audiences = BukkitAudiences.create(this);

if (PAPER_PING_EVENT_EXISTS) {
Expand Down Expand Up @@ -123,6 +124,11 @@ private void suggestPaper() {
this.logger.warn("======================================================");
}

@Override
public void onReload() {
this.miniMOTD.configManager().loadExtraConfigs();
}

private static @Nullable Class<?> findClass(final @NonNull String className) {
try {
return Class.forName(className);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public final class PaperPingListener implements Listener {

@EventHandler
public void handlePing(final @NonNull PaperServerListPingEvent event) {
final MOTDConfig cfg = this.miniMOTD.configManager().mainConfig();
final MOTDConfig cfg = this.miniMOTD.configManager().resolveConfig(event.getClient().getVirtualHost());

final PingResponse<CachedServerIcon> response = this.miniMOTD.createMOTD(cfg, event.getNumPlayers(), event.getMaxPlayers());

Expand Down