do Ogres wielding a 2h weapon and another weapon dualwield?

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
Jurriaan
Wyrmic
Posts: 227
Joined: Mon Mar 25, 2013 9:39 am

do Ogres wielding a 2h weapon and another weapon dualwield?

#1 Post by Jurriaan »

I'm trying to find out why my character running my addon doesn't qualify for Windblade.
It's using a 2h weapon and an offhand weapon, and should have done 50000 damage long ago.

But, in combat.lua I see:

Code: Select all

local mode = "other"
if self:hasShield() then mode = "shield"
elseif self:hasTwoHandedWeapon() then mode = "twohanded"
elseif self:hasDualWeapon() then mode = "dualwield"
end
which means, it's more a 'not-2h weapon' than real 'dualwielding´ check?

And I guess if I somehow superload/change hasTwoHandedWeapon()/hasDualWeapon() my berserker talents will go haywire?

I see this has been mentioned before: http://forums.te4.org/viewtopic.php?f=3 ... 1&start=15

Post Reply