From 6795c800ac03613327a3fc71f54ca7790eb2c2f3 Mon Sep 17 00:00:00 2001 From: U~man Date: Sun, 12 Jul 2020 17:01:00 +0200 Subject: [PATCH] FIX: Modifier table --- src/module/actor/entity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/actor/entity.js b/src/module/actor/entity.js index 7cfbb54..d51fab0 100644 --- a/src/module/actor/entity.js +++ b/src/module/actor/entity.js @@ -427,7 +427,7 @@ export class OseActor extends Actor { static _valueFromTable(table, val) { let output; for (let i = 0; i <= val; i++) { - if (table[i]) { + if (table[i] != undefined) { output = table[i]; } }