Skip to content

Commit

Permalink
chore: Bumped packetevents to 2.6.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeGodSRC committed Oct 31, 2024
1 parent 03872b6 commit 838a67f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion framework/platforms/bukkit-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
api(project(":mc-platform"))
api("net.kyori:adventure-platform-bukkit:4.3.4")
api("net.kyori:adventure-text-serializer-bungeecord:4.3.4")
api("com.github.retrooper:packetevents-spigot:2.5.1-SNAPSHOT") {
api("com.github.retrooper:packetevents-spigot:2.6.0-SNAPSHOT") {
exclude(group = "net.kyori")
}
compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ private void loadComponentConfigurations(ScanResult scanResult, Class<? extends
continue;
}

this.loadConfigurationClass(javaClass, override);
try {
this.loadConfigurationClass(javaClass, override);
} catch (Throwable t) {
Log.error(t);
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion framework/platforms/mc-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
api("net.kyori:adventure-text-serializer-gson-legacy-impl:4.17.0")
api("net.kyori:adventure-text-serializer-plain:4.17.0")

api("com.github.retrooper:packetevents-api:2.5.1-SNAPSHOT") {
api("com.github.retrooper:packetevents-api:2.6.0-SNAPSHOT") {
exclude(group = "net.kyori")
}

Expand Down
2 changes: 1 addition & 1 deletion global.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = 0.7.9b5-SNAPSHOT
version = 0.7.9b6-SNAPSHOT

0 comments on commit 838a67f

Please sign in to comment.