Update to 1.4.4
This commit is contained in:
parent
3c0f9bc3c4
commit
166fc798f1
@ -100,7 +100,7 @@ public class PacketDefinitions {
|
||||
//
|
||||
//
|
||||
opCodes[0x82] = new OpCode[]{INT, SHORT, INT, STRING, STRING, STRING, STRING};
|
||||
opCodes[0x83] = new OpCode[]{SHORT, SHORT, UBYTE_BYTE};
|
||||
opCodes[0x83] = new OpCode[]{SHORT, SHORT, SHORT_BYTE};
|
||||
opCodes[0x84] = new OpCode[]{INT, SHORT, INT, BYTE, SHORT_BYTE};
|
||||
//
|
||||
//
|
||||
|
@ -29,6 +29,10 @@ class MetaData extends Instruction {
|
||||
case 5:
|
||||
if (in.readShort() > 0) {
|
||||
skip(in, 3);
|
||||
short len = in.readShort();
|
||||
if (len > 0 ) {
|
||||
skip(in, len);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 6:
|
||||
|
Loading…
Reference in New Issue
Block a user