Skip to content

Commit

Permalink
Update ProtocolInfo.java
Browse files Browse the repository at this point in the history
  • Loading branch information
PetteriM1 committed Jun 13, 2024
1 parent 56b0ed4 commit ec465a5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,14 @@ public interface ProtocolInfo {
// MC packet IDs continue from 300 (0x12c)
// Hack: 100 is added to the IDs below on encode
// TODO: New pid() function (int) while trying not to break too many plugins
int __INTERNAL__CAMERA_INSTRUCTION_PACKET = (byte) 200;
int __INTERNAL__COMPRESSED_BIOME_DEFINITIONS_LIST_PACKET = (byte) 201;
int __INTERNAL__TRIM_DATA_PACKET = (byte) 202;
int __INTERNAL__OPEN_SIGN_PACKET = (byte) 203;
int __INTERNAL__AGENT_ANIMATION_PACKET = (byte) 204;
int __INTERNAL__REFRESH_ENTITLEMENTS_PACKET = (byte) 205;
int __INTERNAL__TOGGLE_CRAFTER_SLOT_REQUEST_PACKET = (byte) 206;
int __INTERNAL__SET_PLAYER_INVENTORY_OPTIONS_PACKET = (byte) 207;
int __INTERNAL__SET_HUD_PACKET = (byte) 208;
int __INTERNAL__AWARD_ACHIEVEMENT_PACKET = (byte) 209;
byte __INTERNAL__CAMERA_INSTRUCTION_PACKET = (byte) 200;
byte __INTERNAL__COMPRESSED_BIOME_DEFINITIONS_LIST_PACKET = (byte) 201;
byte __INTERNAL__TRIM_DATA_PACKET = (byte) 202;
byte __INTERNAL__OPEN_SIGN_PACKET = (byte) 203;
byte __INTERNAL__AGENT_ANIMATION_PACKET = (byte) 204;
byte __INTERNAL__REFRESH_ENTITLEMENTS_PACKET = (byte) 205;
byte __INTERNAL__TOGGLE_CRAFTER_SLOT_REQUEST_PACKET = (byte) 206;
byte __INTERNAL__SET_PLAYER_INVENTORY_OPTIONS_PACKET = (byte) 207;
byte __INTERNAL__SET_HUD_PACKET = (byte) 208;
byte __INTERNAL__AWARD_ACHIEVEMENT_PACKET = (byte) 209;
}

0 comments on commit ec465a5

Please sign in to comment.