Since changeset 1757 (closing ticket #782), M lines have been added to ego_item.txt to fix minimum values for to-hit, to-dam, to-ac and pval.
Correct me if I'm wrong, but all ego armor now have lost their penalty to-hit:
Chain Mail of Resistance (-2) [14,+10] has become Chain Mail of Resistance [14,+10] due to the code added in apply_magic()
No minimum set for the ego, defaulted to zero...
Maybe change that to:
Correct me if I'm wrong, but all ego armor now have lost their penalty to-hit:
Chain Mail of Resistance (-2) [14,+10] has become Chain Mail of Resistance [14,+10] due to the code added in apply_magic()
Code:
/* Apply minimums */ if (o_ptr->to_h < e_ptr->min_to_h) o_ptr->to_h = e_ptr->min_to_h;
Maybe change that to:
Code:
/* Apply minimums */ if (e_ptr->min_to_h && o_ptr->to_h < e_ptr->min_to_h) o_ptr->to_h = e_ptr->min_to_h;
Comment