Item's meta or uses (unsigned short) left-shifted 8 times and the count (unisgned byte).
var encoded = item.meta << 8 | item.count var meta = encoded >> 8 var count = count & 255
See Implementation
Item's meta or uses (unsigned short) left-shifted 8 times and the count (unisgned byte).