diff options
author | Anubisss <none@none> | 2009-10-18 20:20:08 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2009-10-18 20:20:08 +0200 |
commit | 59b33475b58928cef38dddaf277536e1f6df5b1c (patch) | |
tree | f08cd6ec6c6229133508c03068205bc4f11b16a1 | |
parent | c751a76107dc04ddc89de342de04579138b3959d (diff) |
*Fix a typo in cthun.
--HG--
branch : trunk
-rw-r--r-- | src/bindings/scripts/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp b/src/bindings/scripts/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp index f9de19ff92f..5accf61a979 100644 --- a/src/bindings/scripts/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp +++ b/src/bindings/scripts/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp @@ -545,7 +545,7 @@ struct TRINITY_DLL_DECL cthunAI : public ScriptedAI //Get random but only if we have more than one unit on threat list if (temp.size() > 1) - advance (i , rand() % (temp.size() - 1)); + advance (j , rand() % (temp.size() - 1)); return (*j); } |