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:
Kelsi 2026-02-08 00:00:12 -08:00
parent b3b1cc80c6
commit aa462fdb1f
3 changed files with 16 additions and 10 deletions

View file

@ -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) {