9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-20 15:39:17 +00:00

fix: NMS handler proper NMS package

This commit is contained in:
LoJoSho
2024-11-15 16:42:09 -06:00
parent a8870f7ae4
commit d15f79b50f
2 changed files with 4 additions and 2 deletions

View File

@@ -14,10 +14,12 @@ public class NMSHandlers {
put("1.20.1", "v1_20_R1"); put("1.20.1", "v1_20_R1");
put("1.20.2", "v1_20_R2"); put("1.20.2", "v1_20_R2");
put("1.20.4", "v1_20_R3"); put("1.20.4", "v1_20_R3");
// 1.20.5 is not supported; was imminently bumped to 1.20.6
put("1.20.6", "v1_20_R4"); put("1.20.6", "v1_20_R4");
put("1.21", "v1_21_R1"); put("1.21", "v1_21_R1");
put("1.21.1", "v1_21_R1"); put("1.21.1", "v1_21_R1");
put("1.21.3", "v1_21_R3"); // 1.20.2 is not supported; was imminently bumped to 1.21.3
put("1.21.3", "v1_21_R2");
}}; }};
private static NMSHandler handler; private static NMSHandler handler;
@Getter @Getter

View File

@@ -4,7 +4,7 @@ plugins {
} }
dependencies { dependencies {
paperweight.paperDevBundle("1.21-R0.1-SNAPSHOT") paperweight.paperDevBundle("1.21.3-R0.1-SNAPSHOT")
implementation(project(":common")) implementation(project(":common"))
} }