diff options
Diffstat (limited to 'src/game/Totem.cpp')
-rw-r--r-- | src/game/Totem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Totem.cpp b/src/game/Totem.cpp index 6d461ef291d..13b55da7231 100644 --- a/src/game/Totem.cpp +++ b/src/game/Totem.cpp @@ -133,7 +133,7 @@ void Totem::UnSummon() // clear owner's totem slot for (int i = SUMMON_SLOT_TOTEM; i < MAX_TOTEM_SLOT; ++i) { - if (m_owner->m_SummonSlot[i]==GetGUID()) + if (m_owner->m_SummonSlot[i] == GetGUID()) { m_owner->m_SummonSlot[i] = 0; break; |