mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 16:10:49 +01:00
[svn] Fix spell 45072: should only affect demons.
--HG-- branch : trunk
This commit is contained in:
@@ -339,6 +339,13 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
|
||||
damage = 200;
|
||||
break;
|
||||
}
|
||||
// must only affect demons
|
||||
case 45072:
|
||||
{
|
||||
if(unitTarget->GetCreatureType() != CREATURE_TYPE_DEMON)
|
||||
return;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user