Skip to content

Commit

Permalink
v1.3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
byteful committed Feb 9, 2024
1 parent 95e1778 commit dd63c29
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ repositories {
dependencies {
implementation 'de.tr7zw:item-nbt-api:2.12.2'
implementation 'com.github.Redempt:RedLib:6.5.9'
implementation 'com.github.Redempt:Crunch:2.0'
implementation 'com.github.cryptomorin:XSeries:9.8.0'
implementation 'com.github.Revxrsal.Lamp:common:3.1.8'
implementation 'com.github.Revxrsal.Lamp:bukkit:3.1.8'
implementation 'com.github.Sven65:Item-Names:1.0.0'
implementation 'com.github.Redempt:Crunch:2.0.3'
implementation 'com.github.cryptomorin:XSeries:9.9.0'
implementation 'com.github.Revxrsal.Lamp:common:3.1.9'
implementation 'com.github.Revxrsal.Lamp:bukkit:3.1.9'
implementation 'com.github.Sven65:Item-Names:1.0.2'

compileOnly 'org.spigotmc:spigot-api:1.14.4-R0.1-SNAPSHOT'
compileOnly 'org.jetbrains:annotations:23.0.0'
compileOnly 'org.jetbrains:annotations:24.1.0'
compileOnly 'me.clip:placeholderapi:2.11.5'
}

group = 'me.byteful.plugin'
version = '1.3.6'
version = '1.3.6.1'
description = 'LevelTools'
java.sourceCompatibility = JavaVersion.VERSION_1_8

Expand Down
23 changes: 11 additions & 12 deletions src/main/java/me/byteful/plugin/leveltools/LevelToolsPlugin.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
package me.byteful.plugin.leveltools;

import static me.byteful.plugin.leveltools.util.Text.colorize;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Objects;
import java.util.concurrent.TimeUnit;
import me.byteful.plugin.leveltools.api.AnvilCombineMode;
import me.byteful.plugin.leveltools.listeners.AnvilListener;
import me.byteful.plugin.leveltools.listeners.BlockEventListener;
Expand All @@ -15,14 +22,6 @@
import redempt.redlib.misc.Task;
import revxrsal.commands.bukkit.BukkitCommandHandler;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Objects;
import java.util.concurrent.TimeUnit;

import static me.byteful.plugin.leveltools.util.Text.colorize;

public final class LevelToolsPlugin extends JavaPlugin {
private static LevelToolsPlugin instance;

Expand Down Expand Up @@ -104,10 +103,10 @@ public void onDisable() {
}

private void sendStartupBanner() {
Bukkit.getConsoleSender().sendMessage(colorize("&b _____"));
Bukkit.getConsoleSender().sendMessage(colorize("&d| &b| &8Created by &2byteful"));
Bukkit.getConsoleSender().sendMessage(colorize(String.format("&d| &b| &8Running &6%s &8on &6MC %s", getDescription().getFullName(), RedLib.getServerVersion())));
Bukkit.getConsoleSender().sendMessage(colorize("&d|_____ &b| &8Join &9&nhttps://discord.gg/G8BDgqsuyw&8 for support!"));
Bukkit.getConsoleSender().sendMessage(colorize(" &b _____"));
Bukkit.getConsoleSender().sendMessage(colorize(" &d| &b| &8Created by &2byteful"));
Bukkit.getConsoleSender().sendMessage(colorize(String.format(" &d| &b| &8Running &6%s &8on &6MC %s", getDescription().getFullName(), RedLib.getServerVersion())));
Bukkit.getConsoleSender().sendMessage(colorize(" &d|_____ &b| &8Join &9&nhttps://discord.gg/G8BDgqsuyw&8 for support!"));
Bukkit.getConsoleSender().sendMessage("");
}

Expand Down

0 comments on commit dd63c29

Please sign in to comment.