diff options
author | Shauren <shauren.trinity@gmail.com> | 2013-02-15 18:08:15 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2013-02-15 18:08:15 +0100 |
commit | f74b874e930a8e59ac07d21138fdeaef106d7aa9 (patch) | |
tree | 49f73cf6ca40bc84ffe2377a5616fb4a5287fd3b | |
parent | e685b7bd9ec3bf2303f8a1ab2e3aca2d29444e7b (diff) |
Core/Auras: Allow auras that cannot create a separate stack for each caster to stack on one slot
-rw-r--r-- | src/server/game/Entities/Unit/Unit.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index e3a2430f63a..fd9eef3868b 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -3147,7 +3147,9 @@ void Unit::DeMorph() Aura* Unit::_TryStackingOrRefreshingExistingAura(SpellInfo const* newAura, uint8 effMask, Unit* caster, int32* baseAmount /*= NULL*/, Item* castItem /*= NULL*/, uint64 casterGUID /*= 0*/) { ASSERT(casterGUID || caster); - if (!casterGUID) + + // Check if these can stack anyway + if (!casterGUID && (newAura->IsChanneled() || newAura->AttributesEx3 & SPELL_ATTR3_STACK_FOR_DIFF_CASTERS)) casterGUID = caster->GetGUID(); // passive and Incanter's Absorption and auras with different type can stack with themselves any number of times |