Core/Refactor: Part 3

This commit is contained in:
hondacrx
2018-05-16 19:57:48 -04:00
parent 225a5d27f7
commit 5dacd669b5
112 changed files with 564 additions and 561 deletions
@@ -1058,7 +1058,7 @@ namespace Scripts.Northrend.Ulduar.FlameLeviathan
{
brann.RemoveFlag(UnitFields.NpcFlags, NPCFlags.Gossip);
delorah.GetMotionMaster().MovePoint(0, brann.GetPositionX() - 4, brann.GetPositionY(), brann.GetPositionZ());
/// @todo delorah->AI()->Talk(xxxx, brann->GetGUID()); when reached at branz
// @todo delorah->AI()->Talk(xxxx, brann->GetGUID()); when reached at branz
}
}
}
@@ -1388,7 +1388,7 @@ namespace Scripts.Northrend.Ulduar.FlameLeviathan
void FilterTargets(List<WorldObject> targets)
{
targets.RemoveAll(new Predicate<WorldObject>(target =>
targets.RemoveAll(target =>
{
//! No players, only vehicles (@todo check if blizzlike)
Creature creatureTarget = target.ToCreature();
@@ -1420,7 +1420,7 @@ namespace Scripts.Northrend.Ulduar.FlameLeviathan
}
return !playerFound;
}));
});
if (targets.Empty())
{
+1 -1
View File
@@ -176,7 +176,7 @@ namespace Scripts.Northrend.Ulduar
public const uint MagneticCore = 64436;
public const uint MagneticCoreVisual = 64438;
public const uint HalfHeal = 64188;
public const uint ClearAllDebuffs = 34098; /// @Todo: Make Use Of This Spell...
public const uint ClearAllDebuffs = 34098; // @Todo: Make Use Of This Spell...
public const uint FreezeAnimStun = 63354; // Used To Prevent Mkii From Doing Stuff?..
public const uint FreezeAnim = 16245; // Idle Aura. Freezes Animation.
}