We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1abc8 commit 21250c4Copy full SHA for 21250c4
src/main/java/net/elytrium/limbofilter/protocol/data/ItemFrame.java
@@ -47,8 +47,10 @@ public static int getID(ProtocolVersion protocolVersion) {
47
return 57;
48
} else if (protocolVersion.compareTo(ProtocolVersion.MINECRAFT_1_21) <= 0) {
49
return 60;
50
- } else {
+ } else if (protocolVersion.compareTo(ProtocolVersion.MINECRAFT_1_21_2) <= 0) {
51
return 71;
52
+ } else {
53
+ return 70;
54
}
55
56
0 commit comments