File tree 2 files changed +15
-11
lines changed
2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 9
9
10
10
struct ZoneDifficultyNerfData
11
11
{
12
- float HealingNerfPct;
13
- float AbsorbNerfPct;
14
- float SpellDamageBuffPct;
15
- float MeleeDamageBuffPct;
16
- int8 Enabled;
17
- float HealingNerfPctHard;
18
- float AbsorbNerfPctHard;
19
- float SpellDamageBuffPctHard;
20
- float MeleeDamageBuffPctHard;
12
+ float HealingNerfPct = 1 . 0f ;
13
+ float AbsorbNerfPct = 1 . 0f ;
14
+ float SpellDamageBuffPct = 1 . 0f ;
15
+ float MeleeDamageBuffPct = 1 . 0f ;
16
+ int8 Enabled = 1 ;
17
+ float HealingNerfPctHard = 1 . 0f ;
18
+ float AbsorbNerfPctHard = 1 . 0f ;
19
+ float SpellDamageBuffPctHard = 1 . 0f ;
20
+ float MeleeDamageBuffPctHard = 1 . 0f ;
21
21
};
22
22
23
23
struct ZoneDifficulySpellOverrideData
@@ -66,8 +66,8 @@ struct VendorSelectionData
66
66
67
67
struct CreatureOverrideData
68
68
{
69
- float NormalOverride;
70
- float MythicOverride;
69
+ float NormalOverride = 1 . 0f ;
70
+ float MythicOverride = 1 . 0f ;
71
71
};
72
72
73
73
int32 const DUEL_INDEX = 0x7FFFFFFF ;
Original file line number Diff line number Diff line change @@ -45,6 +45,10 @@ void ZoneDifficulty::LoadMapDifficultySettings()
45
45
NerfInfo[DUEL_INDEX][0 ].AbsorbNerfPct = 1 ;
46
46
NerfInfo[DUEL_INDEX][0 ].MeleeDamageBuffPct = 1 ;
47
47
NerfInfo[DUEL_INDEX][0 ].SpellDamageBuffPct = 1 ;
48
+ NerfInfo[DUEL_INDEX][0 ].HealingNerfPctHard = 1 ;
49
+ NerfInfo[DUEL_INDEX][0 ].AbsorbNerfPctHard = 1 ;
50
+ NerfInfo[DUEL_INDEX][0 ].MeleeDamageBuffPctHard = 1 ;
51
+ NerfInfo[DUEL_INDEX][0 ].SpellDamageBuffPctHard = 1 ;
48
52
49
53
// Heroic Quest -> MapId Translation
50
54
HeroicTBCQuestMapList[542 ] = 11362 ; // Blood Furnace
You can’t perform that action at this time.
0 commit comments