aboutsummaryrefslogtreecommitdiff
path: root/src/game/QuestDef.h
diff options
context:
space:
mode:
authorKingPin <none@none>2008-10-22 07:02:05 -0500
committerKingPin <none@none>2008-10-22 07:02:05 -0500
commit14598dd84f489a31cf451aeadd1bfea82f9a1cd7 (patch)
treec3954d0871e76a2cdb244a178acf74e9678d092f /src/game/QuestDef.h
parentbde02d68298e31eb972ada39e5730786d629d32a (diff)
[svn] * Implement honor rewards from quests - Source Mangos
--HG-- branch : trunk
Diffstat (limited to 'src/game/QuestDef.h')
-rw-r--r--src/game/QuestDef.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/QuestDef.h b/src/game/QuestDef.h
index 96321ebe9ce..9627063021c 100644
--- a/src/game/QuestDef.h
+++ b/src/game/QuestDef.h
@@ -200,6 +200,7 @@ class Quest
std::string GetRequestItemsText() const { return RequestItemsText; }
std::string GetEndText() const { return EndText; }
int32 GetRewOrReqMoney() const;
+ uint32 GetRewHonorableKills() const { return RewHonorableKills; }
uint32 GetRewMoneyMaxLevel() const { return RewMoneyMaxLevel; }
// use in XP calculation at client
uint32 GetRewSpell() const { return RewSpell; }
@@ -289,6 +290,7 @@ class Quest
std::string OfferRewardText;
std::string RequestItemsText;
std::string EndText;
+ uint32 RewHonorableKills;
int32 RewOrReqMoney;
uint32 RewMoneyMaxLevel;
uint32 RewSpell;