Skip to content

Commit

Permalink
Added support for 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
OakLoaf committed Dec 12, 2024
1 parent 1d3c380 commit eec4db4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ object Versions {
// }

object Bukkit {
const val minecraft = "1.21.3"
const val paperBuild = "$minecraft-R0.1-20241101.150401-13"
const val minecraft = "1.21.4"
const val paperBuild = "$minecraft-R0.1-20241211.212446-17"
const val paper = paperBuild
const val paperLib = "1.0.8"
const val reflectionRemapper = "0.1.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ static BukkitAddon nmsAddon(PlatformImpl platform) {
private static Initializer constructInitializer() {
try {
String packageVersion = NMS;
if (NMS.equals("v_1_21_4")) {
packageVersion = "v1_21_3";
}

Class<?> initializerClass = Class.forName(TERRA_PACKAGE + "." + packageVersion + ".NMSInitializer");
try {
Expand Down

0 comments on commit eec4db4

Please sign in to comment.