v2.1.3: fixed armored brutes having more DR than intended since v2.0

This commit is contained in:
Evan Debenham
2023-06-25 19:25:12 -04:00
parent ba14831a7e
commit 0e833d1695

View File

@@ -45,7 +45,7 @@ public class ArmoredBrute extends Brute {
@Override
public int drRoll() {
return super.drRoll() + Random.NormalIntRange(6, 10);
return super.drRoll() + 4; //4-12 DR total
}
@Override