Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 196c46f

Browse files
committed
Add Gradle migration settings and console header integration
1 parent ccdf8b8 commit 196c46f

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/gg/nextforge/NextCorePlugin.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package gg.nextforge;
22

3+
import gg.nextforge.console.ConsoleHeader;
34
import gg.nextforge.plugin.NextForgePlugin;
45

56
import java.util.UUID;
@@ -19,7 +20,10 @@ public UUID getPluginId() {
1920
public void enable(boolean isReload) {
2021
if (isReload) {
2122
getSLF4JLogger().info("[NextForge] Our plugins are not designed to be reloaded. Please restart the server or use /nextforge reload <pluginName> to reload it's configuration.");
23+
return;
2224
}
25+
26+
ConsoleHeader.send(this);
2327
}
2428

2529
@Override

0 commit comments

Comments
 (0)