* Added EPIC difficulty (not currently used) to difficulties enum

* Thanks Zor for the research
* Linux guys -- enjoy the full rebuild :P

--HG--
branch : trunk
This commit is contained in:
Brian
2010-04-05 15:11:03 -06:00
parent db2f8ae744
commit befef61acb

View File

@@ -251,6 +251,7 @@ enum Difficulty
DUNGEON_DIFFICULTY_NORMAL = 0,
DUNGEON_DIFFICULTY_HEROIC = 1,
DUNGEON_DIFFICULTY_EPIC = 2,
RAID_DIFFICULTY_10MAN_NORMAL = 0,
RAID_DIFFICULTY_25MAN_NORMAL = 1,
@@ -258,7 +259,7 @@ enum Difficulty
RAID_DIFFICULTY_25MAN_HEROIC = 3,
};
#define MAX_DUNGEON_DIFFICULTY 2
#define MAX_DUNGEON_DIFFICULTY 3
#define MAX_RAID_DIFFICULTY 4
#define MAX_DIFFICULTY 4