I think it has something to do with reaching clevel 41. I've crashed 3 times in a row after killing the great swamp wyrm.
crash in ivanilla
Collapse
X
-
well I've verified that a warrior crashes after reaching level 40 too. Still haven't figured out why.
doesn't crash with mages probably has something to do with PSEUDO_ID_IMPROV
actually, warriors crash at clevel 31, I think it crashes when this calculation goes negative, probably because all of the variables are unsigned...
rate = cp_ptr->sense_base - (p_ptr->lev * cp_ptr->sense_div);
sweet, changing rate from an unsigned int to a regular int seems to solve it.Last edited by fizzix; October 29, 2010, 03:10. -
yup, using your p_class file. the problem was entirely because rate was an unsigned int. (this was the bug alluded to in the chardump.)Comment
Comment