diff options
author | Peter Keresztes Schmidt <carbenium@outlook.com> | 2020-07-12 15:36:55 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-23 00:06:16 +0100 |
commit | 1e1679a1f7d9cdecb49f40f8084b46dbfd48577b (patch) | |
tree | ef2e1aa948151f2efb2c8a999e9a71a6d4f17a4d /src/server/game/Quests/QuestDef.cpp | |
parent | b7353fb92795801c2c2a52035026e9e0059fa83d (diff) |
Core/DataStores: Port refactors from Update DBC field names to generated ones (#24999)
(cherry picked from commit c92950b3e1f6366d85d707365a8ad2caddafeecc)
Diffstat (limited to 'src/server/game/Quests/QuestDef.cpp')
-rw-r--r-- | src/server/game/Quests/QuestDef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 519c5873f6c..fd4d505655b 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -460,7 +460,7 @@ uint32 Quest::CalculateHonorGain(uint8 /*level*/) const if (!tc) return 0; - honor = uint32(tc->value * GetRewHonorMultiplier() * 0.1f); + honor = uint32(tc->Data * GetRewHonorMultiplier() * 0.1f); honor += GetRewHonorAddition(); }*/ |