- Skillcheck on tumble was way too hard (was missing multiplier)

This commit is contained in:
Rob Pearce 2016-05-31 00:53:28 +10:00
parent 23e50d1cf2
commit 7fa750baef
1 changed files with 1 additions and 1 deletions

2
lf.c
View File

@ -22321,7 +22321,7 @@ int modskillcheckroll(lifeform_t *lf, enum CHECKTYPE ct, int *roll) {
attrib = getattr(lf, A_WIS);
break;
case SC_TUMBLE:
attrib = getskill(lf, SK_ATHLETICS);
attrib = (getskill(lf, SK_ATHLETICS)*20);
break;
case SC_LEARNMAGIC:
attrib = (getattr(lf, A_IQ) / 2) + lf->level;