[9930] Move enum QuestTypes to QuestDef.h where it only used.

This is also fix build at GCC
This commit is contained in:
VladimirMangos 2010-05-19 04:28:48 +04:00
parent 54c2da8d53
commit adb09fd0f4
3 changed files with 17 additions and 17 deletions

View file

@ -118,6 +118,22 @@ enum __QuestGiverStatus
DIALOG_STATUS_REWARD = 10 // yellow dot on minimap
};
// values based at QuestInfo.dbc
enum QuestTypes
{
QUEST_TYPE_ELITE = 1,
QUEST_TYPE_LIFE = 21,
QUEST_TYPE_PVP = 41,
QUEST_TYPE_RAID = 62,
QUEST_TYPE_DUNGEON = 81,
QUEST_TYPE_WORLD_EVENT = 82,
QUEST_TYPE_LEGENDARY = 83,
QUEST_TYPE_ESCORT = 84,
QUEST_TYPE_HEROIC = 85,
QUEST_TYPE_RAID_10 = 88,
QUEST_TYPE_RAID_25 = 89
};
enum __QuestFlags
{
// Flags used at server and sent to client

View file

@ -1980,22 +1980,6 @@ enum HolidayIds
HOLIDAY_CALL_TO_ARMS_ISLE_OF_C = 420
};
// values based at QuestInfo.dbc
enum QuestTypes
{
QUEST_TYPE_ELITE = 1,
QUEST_TYPE_LIFE = 21,
QUEST_TYPE_PVP = 41,
QUEST_TYPE_RAID = 62,
QUEST_TYPE_DUNGEON = 81,
QUEST_TYPE_WORLD_EVENT = 82,
QUEST_TYPE_LEGENDARY = 83,
QUEST_TYPE_ESCORT = 84,
QUEST_TYPE_HEROIC = 85,
QUEST_TYPE_RAID_10 = 88,
QUEST_TYPE_RAID_25 = 89
};
// values based at QuestSort.dbc
enum QuestSort
{

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9929"
#define REVISION_NR "9930"
#endif // __REVISION_NR_H__