diff --git a/src/game/QuestDef.cpp b/src/game/QuestDef.cpp index 4cab1cfea..bbe825da5 100644 --- a/src/game/QuestDef.cpp +++ b/src/game/QuestDef.cpp @@ -286,7 +286,7 @@ uint32 Quest::CalculateRewardHonor(uint32 level) const TeamContributionPoints const* tc = sTeamContributionPoints.LookupEntry(level-1); if(!tc) return 0; - uint32 i_honor = uint32(tc->Value * GetRewHonorMultiplier() * 0.1000000014901161); + uint32 i_honor = uint32(tc->Value * GetRewHonorMultiplier() * 0.1f); honor = i_honor + GetRewHonorAddition(); } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 7c770159b..894cc26a7 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11227" + #define REVISION_NR "11228" #endif // __REVISION_NR_H__