Skip to content

Commit

Permalink
Update Ink.java
Browse files Browse the repository at this point in the history
  • Loading branch information
sbkimxtheia committed Dec 28, 2022
1 parent c5620dc commit 6d54450
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/kr/sbxt/xtheia/theia/ink/Ink.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import net.kyori.adventure.text.logger.slf4j.ComponentLogger;
import org.bukkit.Server;
import org.bukkit.inventory.ItemFactory;
import org.bukkit.plugin.Plugin;
import org.bukkit.plugin.java.JavaPlugin;

public final class Ink extends JavaPlugin
Expand All @@ -26,6 +27,12 @@ public void onEnable()
log(Comp.a(Comp.t("Powered by "), Comp.tc("THEIA Core", Colors.LEGACY_YELLOW), Comp.t(" from "), Comp.tc("XTHEIA", Colors.LEGACY_AQUA)));
}

public static void logPluginLoaded(Plugin plugin)
{
log(Comp.tc(plugin.getName() + " Enabled Successfully!", Colors.LEGACY_AQUA));
log(Comp.a(Comp.t("Powered by "), Comp.tc("Ink", Colors.LEGACY_YELLOW), Comp.t(" from "), Comp.tc("XTHEIA", Colors.LEGACY_AQUA)));
}

public static Server getCurrentServer()
{
return currentServer;
Expand Down

0 comments on commit 6d54450

Please sign in to comment.