mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[8484] Fix priest spell 47585
* Move precast spell and add one more to Aura boosts for proper remove at cancel. * Check in ispositivespell as positive to allow cancel in client. (cherry picked from commit 6566ec2bbd3654921446b6522e9800ef835ffffe) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
e170ac3c91
commit
70df7c8e91
4 changed files with 16 additions and 4 deletions
|
|
@ -477,8 +477,13 @@ bool IsPositiveEffect(uint32 spellId, uint32 effIndex)
|
|||
return false;
|
||||
break;
|
||||
case SPELL_AURA_MOD_PACIFY_SILENCE:
|
||||
if(spellproto->Id == 24740) // Wisp Costume
|
||||
return true;
|
||||
switch(spellproto->Id)
|
||||
{
|
||||
case 24740: // Wisp Costume
|
||||
case 47585: // Dispersion
|
||||
return true;
|
||||
default: break;
|
||||
}
|
||||
return false;
|
||||
case SPELL_AURA_MOD_ROOT:
|
||||
case SPELL_AURA_MOD_SILENCE:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue