*Update spell_bonus_data for Garrote - by svetilo12.
*Fix build. --HG-- branch : trunk
This commit is contained in:
@@ -5181,7 +5181,7 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a
|
||||
(27187, -1, -1, -1, 0.03, 'Rogue - Deadly Poison Rank 7($AP*0.12 / number of ticks)'),
|
||||
(57969, -1, -1, -1, 0.03, 'Rogue - Deadly Poison Rank 8($AP*0.12 / number of ticks)'),
|
||||
(57970, -1, -1, -1, 0.03, 'Rogue - Deadly Poison Rank 9($AP*0.12 / number of ticks)'),
|
||||
(703, -1, -1, -1, 0.02, 'Rogue - Garrote'),
|
||||
(703, -1, -1, -1, 0.07, 'Rogue - Garrote'),
|
||||
(1776, -1, -1, 0.21, -1, 'Rogue - Gouge'),
|
||||
(8680, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 1'),
|
||||
(8685, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 2'),
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_bonus_data` WHERE `entry` IN (703);
|
||||
INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
|
||||
(703, -1, -1, -1, 0.07, 'Rogue - Garrote');
|
||||
@@ -3637,7 +3637,7 @@ void Unit::_AddAura(UnitAura * aura, Unit * caster)
|
||||
aura->SetIsSingleTarget(caster && IsSingleTargetSpell(aura->GetSpellProto()));
|
||||
if (aura->IsSingleTarget())
|
||||
{
|
||||
ASSERT((IsInWorld() && !IsDuringRemoveFromWorld()) || (GetCasterGUID() == GetGUID()));
|
||||
ASSERT((IsInWorld() && !IsDuringRemoveFromWorld()) || (aura->GetCasterGUID() == GetGUID()));
|
||||
// register single target aura
|
||||
caster->GetSingleCastAuras().push_back(aura);
|
||||
// remove other single target auras
|
||||
|
||||
Reference in New Issue
Block a user