Fix: ajustements pour rdd

Pas de caractéristiques => isAjustementAstrologique
doit retourner false (au lieu d'exception)
This commit is contained in:
Vincent Vandemeulebrouck 2020-12-31 03:33:16 +01:00
parent 1484e40cf9
commit 49ad4ff9c8

View File

@ -207,7 +207,7 @@ export class RdDResolutionTable {
}
static isAjustementAstrologique(rollData) {
if (rollData.selectedCarac.label.toLowerCase().includes('chance')) {
if (rollData.selectedCarac && rollData.selectedCarac.label.toLowerCase().includes('chance')) {
return true;
}
if (rollData.selectedSort && rollData.selectedSort.data.isrituel) {