Skip to content

Commit 44b5161

Browse files
committed
Core/Players: Removed old unneccessary death knight and demon hunter riding workaround
1 parent 52b42b2 commit 44b5161

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/server/game/Entities/Player/Player.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,6 @@
150150
enum PlayerSpells
151151
{
152152
SPELL_EXPERIENCE_ELIMINATED = 206662,
153-
SPELL_APPRENTICE_RIDING = 33389,
154-
SPELL_JOURNEYMAN_RIDING = 33391
155153
};
156154

157155
static uint32 copseReclaimDelay[MAX_DEATH_COUNT] = { 30, 60, 120 };
@@ -25168,15 +25166,6 @@ void Player::LearnSkillRewardedSpells(uint32 skillId, uint32 skillValue, Races r
2516825166

2516925167
// Check level, skip class spells if not high enough
2517025168
uint32 requiredLevel = std::max(spellInfo->SpellLevel, spellInfo->BaseLevel);
25171-
25172-
// riding special cases
25173-
if (skillId == SKILL_RIDING)
25174-
{
25175-
if (GetClassMask() & ((1 << (CLASS_DEATH_KNIGHT - 1)) | (1 << (CLASS_DEMON_HUNTER - 1)))
25176-
&& (ability->Spell == SPELL_APPRENTICE_RIDING || ability->Spell == SPELL_JOURNEYMAN_RIDING))
25177-
requiredLevel = 0;
25178-
}
25179-
2518025169
if (requiredLevel > GetLevel())
2518125170
continue;
2518225171

0 commit comments

Comments
 (0)