diff options
author | Spp <none@none> | 2010-04-24 17:48:52 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-24 17:48:52 +0200 |
commit | a12c0aef85897d1a8af2c03ff3e888c7c2e62848 (patch) | |
tree | 197d214a27d968a310e7977b21b57ca25f29adfe /src/game/ObjectMgr.cpp | |
parent | 9aa3fea85793a8fe44ea3619e11812af4841eaaa (diff) |
Fix compile ¬¬
+ Code Style (for, if, while)
--HG--
branch : trunk
Diffstat (limited to 'src/game/ObjectMgr.cpp')
-rw-r--r-- | src/game/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index cffb81253a3..feea3b79c4c 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -3687,7 +3687,7 @@ void ObjectMgr::LoadQuests() if (qinfo->QuestFlags & QUEST_FLAGS_AUTO_REWARDED) { // at auto-reward can be rewarded only RewChoiceItemId[0] - for(int j = 1; j < QUEST_REWARD_CHOICES_COUNT; ++j ) + for (int j = 1; j < QUEST_REWARD_CHOICES_COUNT; ++j ) { if (uint32 id = qinfo->RewChoiceItemId[j]) { |