aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/status
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/status')
-rwxr-xr-xazalea-protocol/src/packets/status/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/azalea-protocol/src/packets/status/mod.rs b/azalea-protocol/src/packets/status/mod.rs
index 335600e3..6af51369 100755
--- a/azalea-protocol/src/packets/status/mod.rs
+++ b/azalea-protocol/src/packets/status/mod.rs
@@ -5,11 +5,11 @@ use azalea_protocol_macros::declare_state_packets;
declare_state_packets!(StatusPacket,
Clientbound => [
- status_response,
- pong_response,
+ status_response, // 0x00
+ pong_response, // 0x01
],
Serverbound => [
- status_request,
- ping_request,
+ status_request, // 0x00
+ ping_request, // 0x01
]
);