mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-05 19:32:25 +00:00
Fix clients offhand double attack check
This commit is contained in:
parent
fe97af4d89
commit
d083262555
@ -5061,7 +5061,13 @@ void Client::DoAttackRounds(Mob *target, int hand, bool IsFromSpell)
|
|||||||
|
|
||||||
Attack(target, hand, false, false, IsFromSpell);
|
Attack(target, hand, false, false, IsFromSpell);
|
||||||
|
|
||||||
if (CanThisClassDoubleAttack()) {
|
bool candouble = CanThisClassDoubleAttack();
|
||||||
|
// extra off hand non-sense, can only double with skill of 150 or above
|
||||||
|
// or you have any amount of GiveDoubleAttack
|
||||||
|
if (candouble && hand == MainSecondary)
|
||||||
|
candouble = GetSkill(SkillDoubleAttack) > 149 || (aabonuses.GiveDoubleAttack + spellbonuses.GiveDoubleAttack + itembonuses.GiveDoubleAttack) > 0;
|
||||||
|
|
||||||
|
if (candouble) {
|
||||||
CheckIncreaseSkill(SkillDoubleAttack, target, -10);
|
CheckIncreaseSkill(SkillDoubleAttack, target, -10);
|
||||||
if (CheckDoubleAttack())
|
if (CheckDoubleAttack())
|
||||||
Attack(target, hand, false, false, IsFromSpell);
|
Attack(target, hand, false, false, IsFromSpell);
|
||||||
@ -5073,9 +5079,9 @@ void Client::DoAttackRounds(Mob *target, int hand, bool IsFromSpell)
|
|||||||
if (hand == MainPrimary) {
|
if (hand == MainPrimary) {
|
||||||
auto flurrychance = aabonuses.FlurryChance + spellbonuses.FlurryChance + itembonuses.FlurryChance;
|
auto flurrychance = aabonuses.FlurryChance + spellbonuses.FlurryChance + itembonuses.FlurryChance;
|
||||||
if (flurrychance && zone->random.Roll(flurrychance)) {
|
if (flurrychance && zone->random.Roll(flurrychance)) {
|
||||||
|
Attack(target, hand, false, false, IsFromSpell);
|
||||||
|
Attack(target, hand, false, false, IsFromSpell);
|
||||||
Message_StringID(MT_NPCFlurry, YOU_FLURRY);
|
Message_StringID(MT_NPCFlurry, YOU_FLURRY);
|
||||||
Attack(target, hand, false, false, IsFromSpell);
|
|
||||||
Attack(target, hand, false, false, IsFromSpell);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
auto extraattackchance = aabonuses.ExtraAttackChance + spellbonuses.ExtraAttackChance + itembonuses.ExtraAttackChance;
|
auto extraattackchance = aabonuses.ExtraAttackChance + spellbonuses.ExtraAttackChance + itembonuses.ExtraAttackChance;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user