diff options
| author | Neo2003 <none@none> | 2008-10-06 04:48:59 -0500 |
|---|---|---|
| committer | Neo2003 <none@none> | 2008-10-06 04:48:59 -0500 |
| commit | 1fc5c0d6d7200048009f99c2cb4d3fd12858ed2f (patch) | |
| tree | 58895d02973f2387143bc3d1c1e5ecf8a28984fc /src/bindings/scripts/include | |
| parent | 010ed993e1a00246dd15df97a3ba6893410d2d3f (diff) | |
[svn] * Little fix in RandomMovementGenerator
* Updated to 6731 and 680
--HG--
branch : trunk
rename : 6721-676 => 6731-680
Diffstat (limited to 'src/bindings/scripts/include')
| -rw-r--r-- | src/bindings/scripts/include/sc_creature.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/scripts/include/sc_creature.cpp b/src/bindings/scripts/include/sc_creature.cpp index 4c9f7a385a2..8e18b0fc29e 100644 --- a/src/bindings/scripts/include/sc_creature.cpp +++ b/src/bindings/scripts/include/sc_creature.cpp @@ -35,8 +35,8 @@ void ScriptedAI::MoveInLineOfSight(Unit *who) if (!InCombat)
{
- Aggro(who);
InCombat = true;
+ Aggro(who);
}
}
}
@@ -54,8 +54,8 @@ void ScriptedAI::AttackStart(Unit* who) if (!InCombat)
{
- Aggro(who);
InCombat = true;
+ Aggro(who);
}
}
}
@@ -582,8 +582,8 @@ void Scripted_NoMovementAI::MoveInLineOfSight(Unit *who) if (!InCombat)
{
- Aggro(who);
InCombat = true;
+ Aggro(who);
}
}
}
@@ -601,8 +601,8 @@ void Scripted_NoMovementAI::AttackStart(Unit* who) if (!InCombat)
{
- Aggro(who);
InCombat = true;
+ Aggro(who);
}
}
}
|
