Updated packet order, removed player entity id as 0

This commit is contained in:
Shoghi Cervantes
2015-02-10 12:02:59 +01:00
parent 8679ad5b86
commit eeeaac04e9
3 changed files with 14 additions and 23 deletions

View File

@ -31,12 +31,11 @@ interface Info{
* Actual Minecraft: PE protocol version
*/
const CURRENT_PROTOCOL = 21;
const DISCONNECT_PACKET = 0x82;
const LOGIN_PACKET = 0x83;
const LOGIN_STATUS_PACKET = 0x84;
const LOGIN_PACKET = 0x82;
const LOGIN_STATUS_PACKET = 0x83;
const DISCONNECT_PACKET = 0x84;
const MESSAGE_PACKET = 0x85;
const SET_TIME_PACKET = 0x86;