our current implementation of bitfield is big endian
some protocols such as diablo2 are fully little endian, even their bitfields
2 ways to do that :
- implement it ourselves
- use https://github.com/inolen/bit-buffer
I'm not too confident on being able to do 1 easily.
Might try to do 2