There was an error while loading. Please reload this page.
1 parent b04044e commit 1d7a959Copy full SHA for 1d7a959
2 files changed
api/src/main/java/com/convallyria/forcepack/api/ForcePackPlatform.java
@@ -128,7 +128,7 @@ default Set<ResourcePack> getPacksForVersion(int protocolVersion) {
128
}
129
130
log("No valid resource packs found");
131
- return null;
+ return Set.of();
132
133
134
void log(String info, Object... format);
sponge/build.gradle.kts
@@ -42,6 +42,17 @@ repositories {
42
43
44
45
+configurations {
46
+ all {
47
+ resolutionStrategy {
48
+ force("net.kyori:adventure-api:4.25.0")
49
+ force("net.kyori:adventure-bom:4.25.0")
50
+ force("net.kyori:adventure-nbt:4.25.0")
51
+ force("net.kyori:examination:4.25.0")
52
+ }
53
54
+}
55
+
56
dependencies {
57
implementation(project(":api"))
58
implementation(project(":webserver", "shadow"))
0 commit comments