mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-03 20:03:50 +00:00
fix: env damage alias overwrote handler that preserved damage type
SMSG_ENVIRONMENTALDAMAGELOG (alias) registration at line 173 silently overwrote the canonical SMSG_ENVIRONMENTAL_DAMAGE_LOG handler at line 108. The alias handler discarded envType (fall/lava/drowning), so the UI couldn't differentiate environmental damage sources. Removed the dead alias handler and its method; the canonical inline handler with envType forwarding is now the sole registration.
This commit is contained in:
parent
0795430390
commit
fc2526fc18
2 changed files with 2 additions and 21 deletions
|
|
@ -137,7 +137,6 @@ private:
|
|||
void handleUpdateComboPoints(network::Packet& packet);
|
||||
void handlePvpCredit(network::Packet& packet);
|
||||
void handleProcResist(network::Packet& packet);
|
||||
void handleEnvironmentalDamageLog(network::Packet& packet);
|
||||
void handleSpellDamageShield(network::Packet& packet);
|
||||
void handleSpellOrDamageImmune(network::Packet& packet);
|
||||
void handleResistLog(network::Packet& packet);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue