Skip to content

Commit

Permalink
feat: Support 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
imJack6 committed Jul 3, 2024
1 parent 3adf3b5 commit 4c71fa1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>fun.lewisdev</groupId>
<artifactId>DeluxeHub</artifactId>
<version>3.5.4</version>
<version>3.5.6</version>
<packaging>jar</packaging>

<name>DeluxeHub</name>
Expand Down Expand Up @@ -115,31 +115,31 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.20.1-R0.1-SNAPSHOT</version>
<version>1.21-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-chat</artifactId>
<version>1.16-R0.1</version>
<version>1.16-R0.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.21</version>
<version>1.5.25</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.4</version>
<version>2.11.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit-lite</artifactId>
<version>1.7</version>
<version>1.8</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -161,7 +161,7 @@
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.11.3</version>
<version>2.13.1</version>
</dependency>
<dependency>
<groupId>com.github.shynixn.headdatabase</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void main(final CommandContext args, final CommandSender sender) throws C

sender.sendMessage("");
sender.sendMessage(TextUtil.color("&d&lDeluxeHub " + "&fv" + plugin.getDescription().getVersion()));
sender.sendMessage(TextUtil.color("&7Author: &fItsLewizzz"));
sender.sendMessage(TextUtil.color("&7Author: &fItsLewizzz && imJack_"));
sender.sendMessage("");
sender.sendMessage(TextUtil.color(" &d/deluxehub info &8- &7&oDisplays information about the current config"));
sender.sendMessage(TextUtil.color(" &d/deluxehub scoreboard &8- &7&oToggle the scoreboard"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public ItemStackBuilder withGlow() {
final ItemMeta meta = ITEM_STACK.getItemMeta();
meta.addItemFlags(ItemFlag.HIDE_ENCHANTS);
ITEM_STACK.setItemMeta(meta);
ITEM_STACK.addUnsafeEnchantment(Enchantment.ARROW_INFINITE, 1);
ITEM_STACK.addUnsafeEnchantment(Enchantment.INFINITY, 1);
return this;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ${project.name}
author: ItsLewizzz
authors: [ItsLewizzz,imJack_]
version: ${project.version}
description: ${project.description}
website: ${project.url}
Expand Down

0 comments on commit 4c71fa1

Please sign in to comment.