ThePhrozenKeep / D2MOO

Reimplementation of the Diablo2 game coupled with patching facilities for modders.
MIT License
93 stars 29 forks source link

Incorrect bit flag in `D2GAME_PACKETS_SendPacket0x7B_6FC3F720` #164

Closed Necrolis closed 2 months ago

Necrolis commented 2 months ago

https://github.com/ThePhrozenKeep/D2MOO/blob/559def2d8fd94e1d2f959fa6e4f907a0f221795f/source/D2Game/src/GAME/SCmd.cpp#L2149

packet7B.nHand = nHand ? 0x08 : 0x00; should be packet7B.nHand = nHand ? 0x80 : 0x00;