10-30-2011, 12:31 PM
I took a look at what you committed, and you added TAG_ByteArray somewhere in the middle of the enum declaration. All values in enums are the previous+1 unless specified otherwise, so all enum values are shifted now. All tags have a specific value that are compared with the values in NBT data which means you kinda messed it up :p you need to find the value of TAG_ByteArray and add it to the enum list in the correct place.