diff options
| author | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
|---|---|---|
| committer | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
| commit | 4635fbc0201846721287a1eb730491262237babd (patch) | |
| tree | 5b02b41f0099fd9d3af7f3a826ef0ca6dfe80748 /src/scripts/outland/hellfire_citadel | |
| parent | 46f0674e237dd8fe97ba4f0769e18b4adfce841b (diff) | |
Code Style (game + scripts only):
"!=" --> " != " (when needed)
" !=" --> " !="
"!= " --> "!= "
--HG--
branch : trunk
Diffstat (limited to 'src/scripts/outland/hellfire_citadel')
| -rw-r--r-- | src/scripts/outland/hellfire_citadel/hellfire_ramparts/boss_vazruden_the_herald.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/outland/hellfire_citadel/hellfire_ramparts/boss_vazruden_the_herald.cpp b/src/scripts/outland/hellfire_citadel/hellfire_ramparts/boss_vazruden_the_herald.cpp index 51f3419c887..c65e5ad838b 100644 --- a/src/scripts/outland/hellfire_citadel/hellfire_ramparts/boss_vazruden_the_herald.cpp +++ b/src/scripts/outland/hellfire_citadel/hellfire_ramparts/boss_vazruden_the_herald.cpp @@ -191,7 +191,7 @@ struct boss_vazrudenAI : public ScriptedAI void KilledUnit(Unit* who) { - if (who && who->GetEntry()!=ENTRY_VAZRUDEN) + if (who && who->GetEntry() != ENTRY_VAZRUDEN) DoScriptText(RAND(SAY_KILL_1,SAY_KILL_2), m_creature); } |
