[f] Added some missing MOP basics

This commit is contained in:
SkyFire 2020-02-18 21:55:30 +00:00 committed by Antz
parent e154bc35b7
commit dfa8f03384
2 changed files with 4 additions and 3 deletions

View file

@ -531,7 +531,7 @@ const float Player::m_diminishing_k[MAX_CLASSES] =
0.9880f, // Shaman
0.9830f, // Mage
0.9830f, // Warlock
0.0f, // ??
0.9880f, // Monk
0.9720f // Druid
};
@ -548,7 +548,7 @@ void Player::UpdateParryPercentage()
145.560408f, // Shaman
0.0f, // Mage
0.0f, // Warlock
0.0f, // ??
0.0f, // Monk
0.0f // Druid
};
@ -586,7 +586,7 @@ void Player::UpdateDodgePercentage()
145.560408f, // Shaman
150.375940f, // Mage
150.375940f, // Warlock
0.0f, // ??
145.560408f, // Monk
116.890707f // Druid
};

View file

@ -74,6 +74,7 @@ enum Races
// max+1 for player race
#define MAX_RACES 27
#define MAX_PLAYABLE_RACES 15
#define RACEMASK_ALL_PLAYABLE \
((1<<(RACE_HUMAN-1)) |(1<<(RACE_ORC-1)) |(1<<(RACE_DWARF-1)) | \