aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnubisss <none@none>2009-10-18 20:20:08 +0200
committerAnubisss <none@none>2009-10-18 20:20:08 +0200
commit59b33475b58928cef38dddaf277536e1f6df5b1c (patch)
treef08cd6ec6c6229133508c03068205bc4f11b16a1
parentc751a76107dc04ddc89de342de04579138b3959d (diff)
*Fix a typo in cthun.
--HG-- branch : trunk
-rw-r--r--src/bindings/scripts/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp2
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);
}