v2.0.1: fixed brawlers stance granting weapon damage blocking

This commit is contained in:
Evan Debenham
2023-03-24 11:16:41 -04:00
parent 4afa49cea1
commit a351cefda7

View File

@@ -570,7 +570,7 @@ public class Hero extends Char {
}
if (armDr > 0) dr += armDr;
}
if (belongings.weapon() != null) {
if (belongings.weapon() != null && !RingOfForce.fightingUnarmed(this)) {
int wepDr = Random.NormalIntRange( 0 , belongings.weapon().defenseFactor( this ) );
if (STR() < ((Weapon)belongings.weapon()).STRReq()){
wepDr -= 2*(((Weapon)belongings.weapon()).STRReq() - STR());