mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-03 08:03:50 +00:00
Fix buff bar updates, stair collision, and right-click aura cancel
Clear aura list on AURA_UPDATE_ALL so dismount/WMO transitions refresh properly. Increase WMO step height thresholds to reduce stair blocking. Change buff cancel to right-click and support dismount via buff bar.
This commit is contained in:
parent
dcc8d221c2
commit
94d544a8a7
3 changed files with 16 additions and 10 deletions
|
|
@ -3789,6 +3789,9 @@ void GameHandler::handleAuraUpdate(network::Packet& packet, bool isAll) {
|
|||
}
|
||||
|
||||
if (auraList) {
|
||||
if (isAll) {
|
||||
auraList->clear();
|
||||
}
|
||||
for (const auto& [slot, aura] : data.updates) {
|
||||
// Ensure vector is large enough
|
||||
while (auraList->size() <= slot) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue