Skip to content

Commit

Permalink
Merge pull request #94 from TownyAdvanced/add_sick_ascii_art
Browse files Browse the repository at this point in the history
Add sick ascii art
  • Loading branch information
Goosius1 committed Jul 13, 2023
2 parents 6ac06c4 + a7997ef commit ab72ae4
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import com.palmergames.bukkit.towny.exceptions.initialization.TownyInitException;
import com.palmergames.bukkit.towny.object.Translatable;
import com.palmergames.bukkit.towny.object.TranslationLoader;
import com.palmergames.bukkit.util.Colors;
import com.palmergames.bukkit.util.Version;
import io.github.townyadvanced.townyprovinces.commands.TownyProvincesAdminCommand;
import io.github.townyadvanced.townyprovinces.data.DataHandlerUtil;
Expand Down Expand Up @@ -47,6 +48,8 @@ public class TownyProvinces extends JavaPlugin {
public void onEnable() {
plugin = this;

printSickAsciiArt();

//Load Mandatory stuff
if(!checkTownyVersion()
|| !loadConfig()
Expand All @@ -71,6 +74,20 @@ public void onEnable() {
info("TownyProvinces Loaded Successfully");
}

private void printSickAsciiArt() {
String art = System.lineSeparator() + "" +
System.lineSeparator() + "_________ _______ _ _______ _______ _______ _________ _ _______ _______ _______ " +
System.lineSeparator() + "\\__ __/( ___ )|\\ /|( ( /||\\ /|( ____ )( ____ )( ___ )|\\ /|\\__ __/( ( /|( ____ \\( ____ \\( ____ \\" +
System.lineSeparator() + " ) ( | ( ) || ) ( || \\ ( |( \\ / )| ( )|| ( )|| ( ) || ) ( | ) ( | \\ ( || ( \\/| ( \\/| ( \\/" +
System.lineSeparator() + " | | | | | || | _ | || \\ | | \\ (_) / | (____)|| (____)|| | | || | | | | | | \\ | || | | (__ | (_____ " +
System.lineSeparator() + " | | | | | || |( )| || (\\ \\) | \\ / | _____)| __)| | | |( ( ) ) | | | (\\ \\) || | | __) (_____ )" +
System.lineSeparator() + " | | | | | || || || || | \\ | ) ( | ( | (\\ ( | | | | \\ \\_/ / | | | | \\ || | | ( ) |" +
System.lineSeparator() + " | | | (___) || () () || ) \\ | | | | ) | ) \\ \\__| (___) | \\ / ___) (___| ) \\ || (____/\\| (____/\\/\\____) |" +
System.lineSeparator() + " )_( (_______)(_______)|/ )_) \\_/ |/ |/ \\__/(_______) \\_/ \\_______/|/ )_)(_______/(_______/\\_______)" +
System.lineSeparator() + " By Goosius" + System.lineSeparator();
Bukkit.getConsoleSender().sendMessage(Colors.translateColorCodes(art));
}

public void reloadConfigsAndData() {
if(!loadConfig()
|| !loadLocalization(false)
Expand Down

0 comments on commit ab72ae4

Please sign in to comment.