Skip to content

Commit b43931a

Browse files
authored
Support 1.21.93
1 parent abd908d commit b43931a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ public interface ProtocolInfo {
1414
* Actual Minecraft protocol version
1515
*/
1616
@SuppressWarnings("UnnecessaryBoxing")
17-
int CURRENT_PROTOCOL = Integer.valueOf("818"); // DO NOT REMOVE BOXING
17+
int CURRENT_PROTOCOL = Integer.valueOf("819"); // DO NOT REMOVE BOXING
1818

19-
List<Integer> SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL);
19+
List<Integer> SUPPORTED_PROTOCOLS = Ints.asList(818, CURRENT_PROTOCOL);
2020

21-
String MINECRAFT_VERSION_NETWORK = "1.21.90";
21+
String MINECRAFT_VERSION_NETWORK = "1.21.93";
2222
String MINECRAFT_VERSION = 'v' + MINECRAFT_VERSION_NETWORK;
2323

2424
byte BATCH_PACKET = (byte) 0xff;

src/main/resources/creative_items.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
18 Bytes
Binary file not shown.

src/main/resources/runtime_item_states.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)