FIX: Modifier table
parent
fd4051057e
commit
6795c800ac
|
@ -427,7 +427,7 @@ export class OseActor extends Actor {
|
||||||
static _valueFromTable(table, val) {
|
static _valueFromTable(table, val) {
|
||||||
let output;
|
let output;
|
||||||
for (let i = 0; i <= val; i++) {
|
for (let i = 0; i <= val; i++) {
|
||||||
if (table[i]) {
|
if (table[i] != undefined) {
|
||||||
output = table[i];
|
output = table[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue