diff options
author | Rat <gmstreetrat@gmail.com> | 2011-11-23 13:16:45 +0100 |
---|---|---|
committer | Rat <gmstreetrat@gmail.com> | 2011-11-23 13:16:45 +0100 |
commit | dd80a880dc30a337c35fe477bdb8883f9ba09bb1 (patch) | |
tree | b620b027422aab66cb7939a86778ed22b2644eac /src/server/game/Quests/QuestDef.cpp | |
parent | 34f0792f75cbb82f118961a27183d5aedfcc4e0d (diff) |
updated all remaining dbc structures
Diffstat (limited to 'src/server/game/Quests/QuestDef.cpp')
-rwxr-xr-x | src/server/game/Quests/QuestDef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 9650afb60e2..0fcb342fcfc 100755 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -225,7 +225,7 @@ uint32 Quest::CalculateHonorGain(uint8 level) const uint32 honor = 0; - if (GetRewHonorAddition() > 0 || GetRewHonorMultiplier() > 0.0f) + /*if (GetRewHonorAddition() > 0 || GetRewHonorMultiplier() > 0.0f) { // values stored from 0.. for 1... TeamContributionPointsEntry const* tc = sTeamContributionPointsStore.LookupEntry(level-1); @@ -233,7 +233,7 @@ uint32 Quest::CalculateHonorGain(uint8 level) const return 0; honor = uint32(tc->value * GetRewHonorMultiplier() * 0.1000000014901161); honor += GetRewHonorAddition(); - } + }*/ return honor; } |