diff options
author | Giacomo Pozzoni <giacomopoz@gmail.com> | 2021-01-24 16:04:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 16:04:47 +0100 |
commit | 661f554b9e08a3721227f1e4a4fe6fd74e43a1f4 (patch) | |
tree | 16caa4dab3e052ba563212b4f8ef4bdf4af7b5fc /src/server/game/Conditions/DisableMgr.cpp | |
parent | 62320b1efab3a050cf2187490b59234a037c69c8 (diff) |
Core/Misc: Fix static analysis issues (#25924)
* Core/Misc: Fix static analysis issues
* Fix infinite loop in ".debug send opcode"
Fix using uninitialized memory in ".debug send opcode"
Diffstat (limited to 'src/server/game/Conditions/DisableMgr.cpp')
-rw-r--r-- | src/server/game/Conditions/DisableMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Conditions/DisableMgr.cpp b/src/server/game/Conditions/DisableMgr.cpp index bcf1024affe..9a1614fb2e2 100644 --- a/src/server/game/Conditions/DisableMgr.cpp +++ b/src/server/game/Conditions/DisableMgr.cpp @@ -328,7 +328,7 @@ bool IsDisabledFor(DisableType type, uint32 entry, WorldObject const* ref, uint8 { if (spellFlags & (SPELL_DISABLE_ARENAS | SPELL_DISABLE_BATTLEGROUNDS)) { - if (Map const* map = ref->GetMap()) + if (Map const* map = ref->FindMap()) { if (spellFlags & SPELL_DISABLE_ARENAS && map->IsBattleArena()) return true; // Current map is Arena and this spell is disabled here |