twinTakedown with two different Agile weapons
Closed this issue · 0 comments
lizzorrd commented
If you have two different weapons, e.g. a Kukri and a dagger, where both are agile and one deals more damage. There is no way to control which weapon attacks first.
In ranger.js line 117 the primary and secondary weapons will get switched if one is agile. This also happens if both are agile. So in the example the Kukri would become the secondary weapon attacking with MAP, which is not desired.
If you add
&& !secondary.item.system.traits.value.includes("agile"))
to that line at least the weapons won't be swapped if both are agile.