Skip to content

Commit

Permalink
Finish update to 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubenicos committed Dec 4, 2024
1 parent d0eb1aa commit 767591f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ subprojects {
}

dependencies {
compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT'
compileOnly 'it.unimi.dsi:fastutil:8.5.12'
compileOnly('com.mojang:datafixerupper:4.1.27') { transitive = false }

Expand Down
2 changes: 1 addition & 1 deletion rtag-block/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT'
}
2 changes: 1 addition & 1 deletion rtag-entity/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT'
}
2 changes: 1 addition & 1 deletion rtag-item/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repositories {
}

dependencies {
compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT'
compileOnly 'com.mojang:authlib:1.5.26' // 3.11.50
compileOnly('com.mojang:datafixerupper:4.1.27') { transitive = false }
}
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ public class ItemObject {
registry$item = "g";
if (ServerInstance.VERSION >= 21.02f) {
copy = "v";
setItem = "o";
if (ServerInstance.VERSION >= 21.03f) {
setItem = "p";
} else {
setItem = "o";
}
}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion rtag-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
implementation project(':rtag-entity')
implementation project(':rtag-item')

compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT'
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/saicone/rtag/data/ComponentType.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ComponentType {
private static final Map<String, Codec<Object>> CODECS = new HashMap<>();

/**
* DynamicOpsNBT public instance from Minecraft code.
* NbtOps public instance from Minecraft code.
*/
@ApiStatus.Experimental
public static final DynamicOps<Object> NBT_OPS;
Expand Down

0 comments on commit 767591f

Please sign in to comment.