0x47 is byte not boolean, shouldn't make a difference

This commit is contained in:
md_5 2012-10-22 09:35:43 +11:00
parent 3b7df920d1
commit e0b38c9984

View File

@ -1,7 +1,6 @@
package net.md_5.mc.protocol; package net.md_5.mc.protocol;
import java.io.DataInput; import java.io.DataInput;
import java.io.DataInputStream;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
@ -172,7 +171,7 @@ public class PacketDefinitions {
// //
// //
opCodes[0x46] = new Instruction[]{BYTE, BYTE}; opCodes[0x46] = new Instruction[]{BYTE, BYTE};
opCodes[0x47] = new Instruction[]{INT, BOOLEAN, INT, INT, INT}; opCodes[0x47] = new Instruction[]{INT, BYTE, INT, INT, INT};
// //
// //
// 0x4A -> 0x63 Do not exist // 0x4A -> 0x63 Do not exist