Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 4053291

Browse files
committed
Spigot 1.19 support
1 parent 1e7eee4 commit 4053291

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

pom.xml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>fun.lewisdev</groupId>
88
<artifactId>DeluxeHub</artifactId>
9-
<version>3.5.1</version>
9+
<version>3.5.2</version>
1010
<packaging>jar</packaging>
1111

1212
<name>DeluxeHub</name>
@@ -51,7 +51,7 @@
5151
<artifactSet>
5252
<includes>
5353
<include>org.bstats:bstats-bukkit-lite</include>
54-
<include>cl.bgmp:command-framework-bukkit</include>
54+
<include>com.github.BGMP.CommandFramework:command-framework-bukkit</include>
5555
<include>javax.inject:javax.inject</include>
5656
<include>de.tr7zw:item-nbt-api</include>
5757
</includes>
@@ -64,11 +64,11 @@
6464
</relocation>
6565
<relocation>
6666
<pattern>cl.bgmp</pattern>
67-
<shadedPattern>fun.lewisdev.deluxehub.libs.commandframework</shadedPattern>
67+
<shadedPattern>fun.lewisdev.deluxehub.libs.command</shadedPattern>
6868
</relocation>
6969
<relocation>
7070
<pattern>de.tr7zw.changeme.nbtapi</pattern>
71-
<shadedPattern>fun.lewisdev.deluxehub.libs.nbtapi</shadedPattern>
71+
<shadedPattern>fun.lewisdev.deluxehub.libs.nbt</shadedPattern>
7272
</relocation>
7373
</relocations>
7474
</configuration>
@@ -94,8 +94,8 @@
9494
<url>https://oss.sonatype.org/content/groups/public/</url>
9595
</repository>
9696
<repository>
97-
<id>bgm</id>
98-
<url>https://maven.bgmp.cl/</url>
97+
<id>jitpack.io</id>
98+
<url>https://jitpack.io</url>
9999
</repository>
100100
<repository>
101101
<id>CodeMC</id>
@@ -153,14 +153,15 @@
153153
<version>1.2</version>
154154
</dependency>
155155
<dependency>
156-
<groupId>cl.bgmp</groupId>
156+
<groupId>com.github.BGMP.CommandFramework</groupId>
157157
<artifactId>command-framework-bukkit</artifactId>
158-
<version>1.0.3-SNAPSHOT</version>
158+
<version>master</version>
159+
<scope>compile</scope>
159160
</dependency>
160161
<dependency>
161162
<groupId>de.tr7zw</groupId>
162163
<artifactId>item-nbt-api</artifactId>
163-
<version>2.9.2</version>
164+
<version>2.10.0-SNAPSHOT</version>
164165
</dependency>
165166
<dependency>
166167
<groupId>com.github.shynixn.headdatabase</groupId>

src/main/java/fun/lewisdev/deluxehub/command/CommandManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
public class CommandManager {
1818

19-
private DeluxeHubPlugin plugin;
20-
private FileConfiguration config;
19+
private final DeluxeHubPlugin plugin;
20+
private final FileConfiguration config;
2121

2222
private CommandsManager commands;
2323
private CommandsManagerRegistration commandRegistry;
2424

25-
private List<CustomCommand> customCommands;
25+
private final List<CustomCommand> customCommands;
2626

2727
public CommandManager(DeluxeHubPlugin plugin) {
2828
this.plugin = plugin;

src/main/resources/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# [CLOSE] - Close an open inventory gui
4040
#--------
4141
# MESSAGE FORMATTING:
42-
# {#hex-code} - Hex chat colour (requires Spigot 1.16+) (e.g. "{#5fad95}Hello!")
42+
# HEX colors formatting: https://wiki.lewisdev.fun/text-colours-rgb
4343
# <center> Centered message! </center> - Centers a message in chat
4444

4545
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#

0 commit comments

Comments
 (0)