diff options
author | Machiavelli <machiavelli.trinity@gmail.com> | 2013-02-17 14:48:14 +0100 |
---|---|---|
committer | Machiavelli <machiavelli.trinity@gmail.com> | 2013-02-17 14:48:14 +0100 |
commit | 0049e580ebb8fafc6341fd6c52bb028a8532bdbe (patch) | |
tree | 9958429290b97a0981079c9f1e4b554432df256a /src | |
parent | 6590cf4f9e3101a0406d900a5441c309de5697ce (diff) |
Core/Auras: Restore part of 1845ab79 that was accidentally reverted
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Unit/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index f607e7930a6..29b3fe0383a 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -3149,7 +3149,7 @@ Aura* Unit::_TryStackingOrRefreshingExistingAura(SpellInfo const* newAura, uint8 ASSERT(casterGUID || caster); // Check if these can stack anyway - if (!casterGUID && (newAura->IsChanneled() || newAura->AttributesEx3 & SPELL_ATTR3_STACK_FOR_DIFF_CASTERS)) + if (!casterGUID && !newAura->IsStackableOnOneSlotWithDifferentCasters()) casterGUID = caster->GetGUID(); // passive and Incanter's Absorption and auras with different type can stack with themselves any number of times |