diff options
Diffstat (limited to 'src/game/QuestDef.h')
-rw-r--r-- | src/game/QuestDef.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/QuestDef.h b/src/game/QuestDef.h index 39fbc071db6..57c0df30e00 100644 --- a/src/game/QuestDef.h +++ b/src/game/QuestDef.h @@ -176,10 +176,10 @@ class Quest friend class ObjectMgr; public: Quest(Field * questRecord); - uint32 XPValue( Player *pPlayer ) const; + uint32 XPValue(Player *pPlayer) const; - bool HasFlag( uint32 flag ) const { return ( QuestFlags & flag ) != 0; } - void SetFlag( uint32 flag ) { QuestFlags |= flag; } + bool HasFlag(uint32 flag) const { return (QuestFlags & flag) != 0; } + void SetFlag(uint32 flag) { QuestFlags |= flag; } // table data accessors: uint32 GetQuestId() const { return QuestId; } |