- Skillcheck on tumble was way too hard (was missing multiplier)
This commit is contained in:
parent
23e50d1cf2
commit
7fa750baef
2
lf.c
2
lf.c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue