|
1 | 1 | package me.byteful.plugin.leveltools; |
2 | 2 |
|
| 3 | +import static me.byteful.plugin.leveltools.util.Text.colorize; |
| 4 | + |
| 5 | +import java.io.IOException; |
| 6 | +import java.nio.file.Files; |
| 7 | +import java.nio.file.Path; |
| 8 | +import java.util.Objects; |
| 9 | +import java.util.concurrent.TimeUnit; |
3 | 10 | import me.byteful.plugin.leveltools.api.AnvilCombineMode; |
4 | 11 | import me.byteful.plugin.leveltools.listeners.AnvilListener; |
5 | 12 | import me.byteful.plugin.leveltools.listeners.BlockEventListener; |
|
15 | 22 | import redempt.redlib.misc.Task; |
16 | 23 | import revxrsal.commands.bukkit.BukkitCommandHandler; |
17 | 24 |
|
18 | | -import java.io.IOException; |
19 | | -import java.nio.file.Files; |
20 | | -import java.nio.file.Path; |
21 | | -import java.util.Objects; |
22 | | -import java.util.concurrent.TimeUnit; |
23 | | - |
24 | | -import static me.byteful.plugin.leveltools.util.Text.colorize; |
25 | | - |
26 | 25 | public final class LevelToolsPlugin extends JavaPlugin { |
27 | 26 | private static LevelToolsPlugin instance; |
28 | 27 |
|
@@ -104,10 +103,10 @@ public void onDisable() { |
104 | 103 | } |
105 | 104 |
|
106 | 105 | private void sendStartupBanner() { |
107 | | - Bukkit.getConsoleSender().sendMessage(colorize("&b _____")); |
108 | | - Bukkit.getConsoleSender().sendMessage(colorize("&d| &b| &8Created by &2byteful")); |
109 | | - Bukkit.getConsoleSender().sendMessage(colorize(String.format("&d| &b| &8Running &6%s &8on &6MC %s", getDescription().getFullName(), RedLib.getServerVersion()))); |
110 | | - Bukkit.getConsoleSender().sendMessage(colorize("&d|_____ &b| &8Join &9&nhttps://discord.gg/G8BDgqsuyw&8 for support!")); |
| 106 | + Bukkit.getConsoleSender().sendMessage(colorize(" &b _____")); |
| 107 | + Bukkit.getConsoleSender().sendMessage(colorize(" &d| &b| &8Created by &2byteful")); |
| 108 | + Bukkit.getConsoleSender().sendMessage(colorize(String.format(" &d| &b| &8Running &6%s &8on &6MC %s", getDescription().getFullName(), RedLib.getServerVersion()))); |
| 109 | + Bukkit.getConsoleSender().sendMessage(colorize(" &d|_____ &b| &8Join &9&nhttps://discord.gg/G8BDgqsuyw&8 for support!")); |
111 | 110 | Bukkit.getConsoleSender().sendMessage(""); |
112 | 111 | } |
113 | 112 |
|
|
0 commit comments