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]; } }