Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions api/src/main/java/net/okocraft/box/api/util/MCDataVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,16 @@ public record MCDataVersion(int dataVersion) implements Version<MCDataVersion> {
*/
public static final MCDataVersion MC_1_21_8 = new MCDataVersion(4440);

/**
* A {@link MCDataVersion} that represents Minecraft 1.21.9
*/
public static final MCDataVersion MC_1_21_9 = new MCDataVersion(4554);

/**
* A {@link MCDataVersion} that represents Minecraft 1.21.10
*/
public static final MCDataVersion MC_1_21_10 = new MCDataVersion(4556);

/**
* Creates a {@link MCDataVersion} from the specified data version
*
Expand Down
2 changes: 1 addition & 1 deletion bundle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tasks {
}

runServer {
minecraftVersion("1.21.8")
minecraftVersion("1.21.10")
systemProperty("com.mojang.eula.agree", "true")
systemProperty("paper.disablePluginRemapping", "true")
}
Expand Down
4 changes: 2 additions & 2 deletions data-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
group = "net.okocraft.box.datagenerator"
version = "1.0"

val previousMinecraftVersion = "1.21.7"
val minecraftVersion = "1.21.8"
val previousMinecraftVersion = "1.21.9"
val minecraftVersion = "1.21.10"

repositories {
mavenCentral()
Expand Down
Loading