Skip to content

Commit

Permalink
Removed logging from Spigot version
Browse files Browse the repository at this point in the history
  • Loading branch information
VertCode committed May 3, 2021
1 parent 782c6df commit 30e180d
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions spigot/src/main/java/io/alerium/chocolate/ChocolatePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import io.alerium.chocolate.listener.PlayerListener;
import lombok.Getter;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.plugin.java.JavaPlugin;

@Getter
Expand All @@ -26,22 +25,9 @@ public void onDisable() {
@Override
public void onEnable() {
instance = this;
printLogo();

Bukkit.getConsoleSender().sendMessage(ChatColor.translateAlternateColorCodes('&', "Loading..."));
this.cacheManager = new CacheManager();
Bukkit.getServer().getPluginManager().registerEvents(new PlayerListener(this), this);
Bukkit.getServer().getMessenger().registerIncomingPluginChannel(this, "Chocolate", new MessageListener(this));
Bukkit.getConsoleSender().sendMessage(ChatColor.translateAlternateColorCodes('&', "Loaded."));
}

private void printLogo() {
Bukkit.getConsoleSender().sendMessage(ChatColor.translateAlternateColorCodes('&', "&c\n" +
"_________ .__ .__ __ \n" +
"\\_ ___ \\| |__ ____ ____ ____ | | _____ _/ |_ ____ \n" +
"/ \\ \\/| | \\ / _ \\_/ ___\\/ _ \\| | \\__ \\\\ __\\/ __ \\ \n" +
"\\ \\___| Y ( <_> ) \\__( <_> ) |__/ __ \\| | \\ ___/ \n" +
" \\______ /___| /\\____/ \\___ >____/|____(____ /__| \\___ >\n" +
" \\/ \\/ \\/ \\/ \\/ "));
}
}

0 comments on commit 30e180d

Please sign in to comment.