[Bug Fix] Stop skill ups on Charmed NPCs. (#2249)

- Clients were capable of leveling up their melee skills on Charmed Mobs according to: https://github.com/EQEmu/Server/issues/2182
This commit is contained in:
Kinglykrab
2022-06-09 21:08:50 -04:00
committed by GitHub
parent 4639405fdf
commit 83e066bffc
3 changed files with 7 additions and 9 deletions
+1 -3
View File
@@ -1236,11 +1236,9 @@ void EntityList::AEAttack(
) {
for (int i = 0; i < attack_rounds; i++) {
if (!attacker->IsClient() || attacker->GetClass() == MONK || attacker->GetClass() == RANGER) {
attacker->Attack(current_mob, Hand, false, false, is_from_spell);
}
else {
} else {
attacker->CastToClient()->DoAttackRounds(current_mob, Hand, is_from_spell);
}
}