This commit is contained in:
badcaptain
2013-03-14 23:03:39 -04:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -439,7 +439,7 @@ Mob *HateList::GetRandom()
int random = MakeRandomInt(0, count-1);
iterator.Reset();
for (int i = 0; i < random-1; i++)
for (int i = 0; i < random; i++)
iterator.Advance();
return iterator.GetData()->ent;
}